/* RedeWerk – rich-dance-253.css */
@import url('https://fonts.googleapis.com/css2?family=Vollkorn+SC:wght@400;600;700;900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

/* ===========================
   VARIABLES
=========================== */
:root {
  --gold: #b09876;
  --navy: #182a67;
  --text: #3d3d3d;
  --text-mid: #666;
  --text-black: #000;
  --bg-gray: #f2f2f2;
  --white: #ffffff;
  --overlay-dark: rgba(0,0,0,0.67);
  --header-fixed-bg: rgba(247,247,247,0.95);
  --divider-color: rgba(191,191,191,0.52);
  --font-serif: 'Vollkorn SC', Georgia, 'Times New Roman', serif;
  --font-sans: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7em;
  color: var(--text);
  background: var(--white);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-black);
  line-height: 1.1em;
  font-weight: 500;
}
h1 { font-size: 42px; }
h2 { font-size: 36px; }
h3 { font-size: 30px; }
h4 { font-size: 25px; }
h5 { font-size: 22px; }
h6 { font-size: 19px; }
a { color: var(--gold); text-decoration: none; transition: color .3s; }
a:hover { color: var(--navy); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ===========================
   CONTAINER
=========================== */
.container {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
.clearfix::after { content: ''; display: table; clear: both; }

/* ===========================
   UTILITY BAR
=========================== */
#custom-utility-info {
  background-color: var(--gold);
  color: var(--white);
}
.custom-utility {
  color: var(--white);
  padding: .75em 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 13px;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.custom-utility__link {
  color: inherit;
  font-weight: 600;
  font-size: 13px;
  padding: 2px 10px 2px 0;
  margin-right: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s;
}
.custom-utility__link:hover { color: var(--white); opacity: .8; }
.custom-utility__link--button {
  margin-left: auto;
  border: 1px solid var(--white);
  border-radius: 5px;
  padding: 4px 15px;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: color .3s, background-color .3s;
}
.custom-utility__link--button:hover {
  background-color: var(--white);
  color: var(--gold);
}

/* ===========================
   HEADER / NAV
=========================== */
#main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--navy);
  transition: all .5s;
  box-shadow: none;
}
#main-header.scrolled {
  background-color: var(--header-fixed-bg);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.et_menu_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.logo_container a {
  display: flex;
  align-items: center;
}
.logo_container svg { height: 52px; width: auto; }

/* Nav */
#et-top-navigation { display: flex; align-items: center; }
#top-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
#top-menu > li > a {
  display: block;
  padding: 0 18px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--white);
  transition: color .3s;
}
#main-header.scrolled #top-menu > li > a { color: var(--navy); }
#top-menu > li > a:hover,
#top-menu > li.current-menu-item > a { color: var(--gold); }
#main-header.scrolled #top-menu > li > a:hover,
#main-header.scrolled #top-menu > li.current-menu-item > a { color: var(--gold); }

/* Mobile hamburger */
.mobile_menu_bar {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile_menu_bar span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}
#main-header.scrolled .mobile_menu_bar span { background: var(--navy); }
.et_mobile_menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--navy);
  padding: 10px 0;
  z-index: 999;
}
.et_mobile_menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .2s, background .2s;
}
.et_mobile_menu li a:hover { color: var(--gold); background: rgba(255,255,255,.05); }
.et_mobile_menu.open { display: block; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .5em 2em;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all .25s;
  border-radius: 2px;
}
.btn:hover { background: var(--gold); color: var(--white); }
.btn--solid { background: var(--gold); color: var(--white); }
.btn--solid:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.btn--navy { border-color: var(--navy); color: var(--navy); }
.btn--navy:hover { background: var(--navy); color: var(--white); }
.btn--white { border-color: var(--white); color: var(--white); }
.btn--white:hover { background: var(--white); color: var(--gold); }
.btn i { margin-left: 8px; }

/* ===========================
   HERO SECTION
=========================== */
#hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #8e8e8e;
}
.hero-parallax-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img-assets/hero-bg.webp');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 20px 160px;
  max-width: 820px;
  margin: 0 auto;
}
.hero-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: 5vw;
  font-weight: 300;
  color: var(--white);
  line-height: 1.05em;
  margin-bottom: 24px;
}
.hero-content .hero-subtitle {
  font-size: 1.5vw;
  color: rgba(255,255,255,.9);
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  font-size: 24px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ===========================
   SECTION DEFAULTS
=========================== */
.section { padding: 80px 0; }
.section--gray { background: var(--bg-gray); }
.section--dark { background: var(--navy); }
.section--gold { background: var(--gold); }

.section-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-label--light { color: rgba(255,255,255,.7); }
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 0 25px 0;
  border: none;
}
.section-divider--center { margin: 0 auto 25px; }
.text-center { text-align: center; }

/* ===========================
   ABOUT SECTION
=========================== */
#about { padding-bottom: 115px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-left { padding-top: 4px; }
.about-left h2 { font-size: 2.8vw; color: var(--text-black); line-height: 1.1em; }
.about-right { position: relative; }
.about-img {
  margin-top: -120px;
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.about-text { margin-bottom: 28px; }
.about-cta { margin-top: 8px; }

/* ===========================
   STATS SECTION
=========================== */
#stats {
  background: var(--bg-gray) url('../img-assets/stats-bg.webp') right bottom no-repeat;
  background-size: cover;
  opacity: 0.8;
  padding: 45px 0 143px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 97px;
  opacity: 1;
}
.counters-col { padding-top: 30px; }
.counter-item {
  margin-bottom: 14px;
  text-align: center;
  padding: 20px 10px;
}
.counter-value {
  font-size: 72px;
  line-height: 72px;
  font-weight: 500;
  color: var(--gold);
  font-family: var(--font-sans);
}
.counter-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-mid);
  margin-top: 8px;
}
.gallery-col { position: relative; }
.gallery-img {
  margin-top: -120px;
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.gallery-caption {
  text-align: center;
  padding-top: 20px;
  color: var(--text-mid);
  font-size: 15px;
}

/* ===========================
   SERVICES SECTION (inside stats)
=========================== */
.services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.services-label { font-family: var(--font-sans); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; color: var(--navy); margin-bottom: 20px; }
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 0;
}
.service-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}
.service-item h4 { font-size: 17px; margin-bottom: 6px; color: var(--navy); font-family: var(--font-sans); font-weight: 700; text-transform: uppercase; }
.service-item p { font-size: 14px; color: var(--text-mid); margin: 0; }

/* ===========================
   CARDS SECTION (training offers)
=========================== */
#trainings { padding: 80px 0; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,.15); }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.card-body { padding: 28px 24px; }
.card-icon { font-size: 32px; color: var(--gold); margin-bottom: 14px; }
.card h3 { font-size: 20px; margin-bottom: 12px; color: var(--navy); }
.card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ===========================
   WHY US SECTION
=========================== */
#why-us { background: var(--bg-gray); padding: 80px 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-list { margin-top: 30px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.why-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  margin-top: 4px;
}
.why-item h5 { font-family: var(--font-sans); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .05em; }
.why-item p { font-size: 14px; color: var(--text-mid); margin: 0; }
.why-img-wrap img { width: 100%; border-radius: 2px; box-shadow: 0 8px 30px rgba(0,0,0,.12); }

/* ===========================
   TESTIMONIALS
=========================== */
#testimonials { padding: 80px 0; background: var(--navy); }
#testimonials h2 { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
  padding: 32px 26px;
}
.testimonial-stars { color: var(--gold); font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px;
}
.testimonial-author-name { font-size: 14px; font-weight: 700; color: var(--white); }
.testimonial-author-role { font-size: 12px; color: rgba(255,255,255,.5); }

/* ===========================
   CTA PARALLAX SECTION
=========================== */
#cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background-color: #555;
}
.cta-parallax-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img-assets/cta-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.65); }
.cta-content { position: relative; z-index: 2; color: var(--white); max-width: 680px; margin: 0 auto; }
.cta-content .section-label { color: var(--gold); }
.cta-content h2 { color: var(--white); font-size: 38px; margin-bottom: 20px; }
.cta-content p { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 36px; }

/* ===========================
   CONTACT FORM SECTION
=========================== */
#contact-form-section { padding: 80px 0; background: var(--white); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { font-size: 24px; margin-bottom: 20px; color: var(--navy); }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info-icon { color: var(--gold); font-size: 18px; margin-top: 3px; flex-shrink: 0; }
.contact-info-text { font-size: 15px; color: var(--text); }
.contact-info-text strong { display: block; color: var(--navy); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }

/* Form */
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--divider-color);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  border-radius: 2px;
  transition: border-color .25s;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { padding: .7em 2.5em; font-size: 14px; }
.form-message { margin-top: 16px; font-size: 14px; padding: 10px 16px; border-radius: 2px; display: none; }
.form-message.success { background: #e8f5e9; color: #2e7d32; display: block; }
.form-message.error { background: #ffebee; color: #c62828; display: block; }

/* ===========================
   FOOTER
=========================== */
footer {
  background: #111827;
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-logo { margin-bottom: 20px; }
.footer-logo svg { height: 42px; }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: all .25s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(176,152,118,.1); }
.footer-col h5 {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14px; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; font-size: 13px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.45); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===========================
   COOKIE BANNER (GDPR)
=========================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1a1a2e;
  border-top: 3px solid var(--gold);
  z-index: 9999;
  padding: 16px 0;
  display: none;
}
#cookie-banner.visible { display: block; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.5; flex: 1; min-width: 220px; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--gold); color: var(--white);
  border: none; padding: 9px 22px;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  cursor: pointer; border-radius: 2px;
  transition: background .25s;
}
.btn-cookie-accept:hover { background: #9a8060; }
.btn-cookie-decline {
  background: transparent; color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.3);
  padding: 9px 18px;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
  cursor: pointer; border-radius: 2px;
  transition: all .25s;
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,.6); color: var(--white); }

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
  background: var(--navy);
  padding: 90px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img-assets/hero-bg.webp') center/cover no-repeat;
  opacity: .15;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: 38px; margin-bottom: 12px; }
.page-hero .breadcrumb { color: rgba(255,255,255,.5); font-size: 13px; }
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb a:hover { color: var(--white); }

/* ===========================
   CONTENT PAGES
=========================== */
.content-section { padding: 70px 0; }
.content-section h2 { font-size: 28px; margin-bottom: 20px; color: var(--navy); }
.content-section h3 { font-size: 22px; margin-bottom: 14px; color: var(--navy); }
.content-section p { margin-bottom: 1.2em; line-height: 1.75; }
.content-section ul { padding-left: 0; margin-bottom: 1.2em; }
.content-section ul li { padding-left: 24px; position: relative; margin-bottom: 8px; font-size: 15px; }
.content-section ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--gold); font-size: 12px; top: 4px; }
.content-inner { max-width: 860px; }

/* ===========================
   HISTORY PAGE
=========================== */
.timeline { position: relative; padding-left: 40px; margin-top: 40px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--divider-color); }
.timeline-item { position: relative; margin-bottom: 42px; }
.timeline-dot {
  position: absolute;
  left: -36px;
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 4px; }
.timeline-item h3 { font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.timeline-item p { font-size: 15px; color: var(--text-mid); margin: 0; }

/* ===========================
   CONTACT PAGE
=========================== */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.map-placeholder {
  background: var(--bg-gray);
  border-radius: 2px;
  overflow: hidden;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 15px;
  margin-top: 30px;
  border: 1px solid var(--divider-color);
}
.map-placeholder iframe { width: 100%; height: 100%; border: 0; }

/* ===========================
   SEND.PHP
=========================== */
.send-result { max-width: 600px; margin: 60px auto; text-align: center; padding: 50px 40px; background: var(--white); border-radius: 2px; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.send-result i { font-size: 56px; color: var(--gold); margin-bottom: 20px; }
.send-result h2 { color: var(--navy); margin-bottom: 16px; }
.send-result p { color: var(--text-mid); margin-bottom: 28px; }

/* ===========================
   UTILITY CLASSES
=========================== */
.mt-0 { margin-top: 0; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.gold { color: var(--gold); }
.navy { color: var(--navy); }
.text-white { color: var(--white); }

/* ===========================
   RESPONSIVE
=========================== */
@media only screen and (min-width: 1350px) {
  .section { padding: 90px 0; }
}

@media only screen and (max-width: 980px) {
  #main-header { background-color: var(--navy) !important; }
  #top-menu { display: none; }
  .mobile_menu_bar { display: flex; }
  #top-menu > li > a { color: var(--white); }
  .about-grid, .cards-grid, .footer-grid, .contact-wrap, .why-grid, .testimonials-grid, .stats-grid, .services-inner { grid-template-columns: 1fr; }
  .about-img { margin-top: 0; }
  .gallery-img { margin-top: 0; }
  .stats-grid { margin-bottom: 40px; }
  .hero-content h1 { font-size: 9vw; }
  .hero-content .hero-subtitle { font-size: 4vw; }
  .about-left h2 { font-size: 6vw; }
  .contact-page-grid { grid-template-columns: 1fr; }
}

@media only screen and (max-width: 767px) {
  .hero-content h1 { font-size: 11vw; }
  .hero-content .hero-subtitle { font-size: 5.3vw; }
  #hero { min-height: 70vh; }
  .hero-content { padding: 60px 20px 100px; }
  .cards-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { gap: 30px; }
  #stats { padding-bottom: 60px; }
  .stats-grid { margin-bottom: 30px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  h2 { font-size: 26px; }
}

@media only screen and (max-width: 479px) {
  .container { width: 92%; }
  h1 { font-size: 30px; }
  h2 { font-size: 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; }
}
