/* ═══════════════════════════════════════════
   1st Class Facility Services — Brand CSS
   Navy #0A1F44 · Gold #C9A84C · White
═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0A1F44;
  --navy-mid:   #142D5F;
  --navy-light: #1A3A7A;
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --white:      #FFFFFF;
  --gray-light: #F4F4F6;
  --gray-mid:   #D1D4DC;
  --slate:      #4A4F5E;
  --font-head:  'Work Sans', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--white); background: var(--navy); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── GOLD ── */
.gold { color: var(--gold); }

/* ── FLAG STRIPE BAR ── */
.flag-stripe-bar {
  display: flex;
  height: 7px;
  width: 100%;
  position: relative;
  z-index: 200;
}
.stripe { flex: 1; display: block; }
.stripe-navy  { background: var(--navy); }
.stripe-gold  { background: var(--gold); }
.stripe-white { background: var(--white); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 7px;
  left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 31, 68, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 80px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
  transition: opacity 0.2s ease;
}
.nav-logo:hover .logo-img { opacity: 0.88; }
/* Always show dark (white/gold) logo — hero is always dark */
.logo-light { display: none !important; }
.logo-dark  { display: block; }

.nav-links {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.navbar.day-mode .nav-links a { color: var(--navy); }
.navbar.day-mode .nav-links a:hover { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-phone {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.navbar.day-mode .nav-phone { color: var(--navy); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg  { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-xl  { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; text-align: center; padding: 1rem; font-size: 1rem; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  cursor: pointer;
  padding: 5px 7px;
  margin-left: auto;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hamburger:hover {
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.4);
}
.hamburger .flag-icon {
  display: flex;
  align-items: center;
  line-height: 0;
}
.hamburger .flag-icon svg {
  border-radius: 2px;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 79px;
  left: 0; right: 0;
  background: var(--navy);
  padding: 1.5rem 2rem 2rem;
  z-index: 99;
  border-top: 1px solid rgba(201,168,76,0.3);
  gap: 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: url('assets/hero.jpg') center center / cover no-repeat;
  z-index: -2;
  will-change: transform;
}
/* Day brightness filter — removed by JS as scroll progresses */
.hero-bg { filter: brightness(1.15) saturate(1.1); }
.hero-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: linear-gradient(
    to right,
    rgba(10, 31, 68, 0.65) 0%,
    rgba(10, 31, 68, 0.35) 60%,
    rgba(10, 31, 68, 0.15) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.05s linear;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  padding-top: 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  transition: color var(--transition);
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
}
.hero-gold { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  max-width: 600px;
  margin-bottom: 2.5rem;
  transition: color var(--transition);
  text-shadow: 0 1px 12px rgba(0,0,0,0.65);
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTIONS GENERAL ── */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 3rem;
  position: relative;
  z-index: 2;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── FLAG SILHOUETTE OVERLAY ── */
.flag-silhouette {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.flag-silhouette svg { width: 100%; height: 100%; }
.flag-silhouette--right svg { transform: scaleX(-1); }

/* ── FLAG STARS BACKGROUND ── */
.flag-stars-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.flag-stars-bg svg {
  width: 100%;
  height: 100%;
}
/* Ensure content in these sections sits above the star layer */
.coverage .section-inner,
.contact .section-inner,
.faq .container,
.why-us .section-inner,
.vet-banner .vet-inner {
  position: relative;
  z-index: 2;
}


/* ── VET BANNER ── */
.vet-banner {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.vet-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.vet-shield {
  width: 160px;
  height: 190px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 15%, 100% 75%, 50% 100%, 0% 75%, 0% 15%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.vet-stars { font-size: 1rem; color: var(--navy); letter-spacing: 0.2em; }
.vet-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.vet-stripes { font-size: 0.7rem; color: var(--navy); letter-spacing: 0.15em; }
.vet-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.vet-content p em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}
.vet-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2rem;
}
.vet-pillars {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.pillar-icon { font-size: 1.2rem; }

/* ── SERVICES ── */
.services {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: border-color var(--transition), background var(--transition), transform 0.2s;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.service-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  transform: translateY(-4px);
}
.service-card.featured {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.card-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.card-link:hover { color: var(--gold-light); }

/* ── WHY US ── */
.why-us {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-text .section-label { margin-bottom: 0.75rem; }
.why-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.why-text > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.why-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.why-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.check {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.why-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-stat-card {
  background: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}
.big-num {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.big-label {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}
.why-quote {
  background: rgba(201,168,76,0.08);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}
.why-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.why-quote span {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.why-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.badge-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-head);
  letter-spacing: 0.03em;
}

/* ── MARKETS ── */
.markets {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}
.market-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 8px;
  padding: 2rem 1.25rem;
  text-align: center;
  transition: border-color var(--transition), background var(--transition), transform 0.2s;
}
.market-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  transform: translateY(-3px);
}
.market-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.market-card h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

/* ── COVERAGE ── */
.coverage {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.2);
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.coverage-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-head);
  font-weight: 600;
  transition: border-color var(--transition);
}
.coverage-item:hover { border-color: var(--gold); }
.cov-dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── CONTACT ── */
.contact {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-text .section-label { margin-bottom: 0.75rem; }
.contact-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.contact-text > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1rem !important;
  letter-spacing: 0.03em;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 6px;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  width: 100%;
  transition: border-color var(--transition);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form select option { background: var(--navy); color: var(--white); }
.contact-form textarea { resize: vertical; }

/* ── FOOTER ── */
.footer {
  background: #060F22;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 3rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo { height: 56px; width: auto; margin-bottom: 1rem; }
.footer-brand > p:first-of-type {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.footer-vet {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact p { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .vet-inner { grid-template-columns: 1fr; text-align: center; }
  .vet-badge-wrap { display: flex; justify-content: center; }
  .vet-pillars { justify-content: center; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 1.5rem; padding-top: 80px; }
  .section-inner { padding: 4rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .vet-inner { padding: 3rem 1.5rem; }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.8rem; }
}

/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--navy-mid);
  position: relative;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.faq h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.faq .section-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,31,68,0.55);
  backdrop-filter: blur(4px);
}
.faq-item:first-child { border-radius: 10px 10px 0 0; border-top: 1px solid rgba(255,255,255,0.08); }
.faq-item:last-child  { border-radius: 0 0 10px 10px; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  gap: 1rem;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(201,168,76,0.08); }
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.3s ease, color 0.2s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 1.2rem;
}
.faq-a p {
  padding: 0 1.5rem;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.faq-a a { color: var(--gold); font-weight: 600; }

/* ── Footer legal links ── */
.footer-legal {
  margin-top: 0.5rem;
  font-size: 0.82rem;
}
.footer-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

/* ── Speed: contain layout shifts ── */
img { content-visibility: auto; }
.service-card img,
.footer-logo { width: auto; }

/* ── FAQ nav link ── */
@media (max-width: 900px) {
  .faq .section-sub { font-size: 0.95rem; }
}
