/* ================================================================
   GOWER AUTOMOTIVE — style.css  (Version 3)
================================================================ */

/* ── DESIGN TOKENS ────────────────────────────────────────────── */
:root {
  /* Brand colours */
  --navy-900:  #080F22;
  --navy-800:  #0B1530;
  --navy-700:  #0F1D3A;
  --navy-600:  #1B2A5E;

  /* Logo grey — main canvas colour */
  --grey-bg:   #969BA8;
  --grey-dk:   #878D9B;

  /* Platinum silver */
  --silver:    #B8C4D4;
  --silver-lt: #D4DCE8;

  /* Text on grey bg */
  --t-head:    #0B1530;
  --t-body:    #1E2D47;
  --t-muted:   #3D4F65;

  /* Text on dark bg */
  --t-white:       #FFFFFF;
  --t-white70:     rgba(255,255,255,0.70);
  --t-white50:     rgba(255,255,255,0.50);
  --t-white30:     rgba(255,255,255,0.30);

  /* Glows */
  --glow-white:   0 0 20px rgba(255,255,255,0.28), 0 4px 20px rgba(0,0,0,0.35);
  --glow-white-h: 0 0 38px rgba(255,255,255,0.50), 0 8px 32px rgba(0,0,0,0.45);
  --glow-card:    0 8px 40px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.35);
  --glow-card-h:  0 16px 60px rgba(0,0,0,0.58), 0 4px 16px rgba(0,0,0,0.4);
  --glow-plat:    0 0 55px rgba(180,200,225,0.18), 0 20px 60px rgba(0,0,0,0.55);

  /* Layout */
  --nav-h: 72px;
  --r:     14px;
  --r-sm:  8px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --fast: 0.18s;
  --mid:  0.3s;
}

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--t-body);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

/* ── TYPOGRAPHY ───────────────────────────────────────────────── */
.sec-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--t-head);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
/* Dark-section headings — gradient white → silver with a soft glow */
.sec-title--light {
  display: inline-block;
  background: linear-gradient(150deg, #FFFFFF 0%, var(--silver-lt) 42%, var(--silver) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(180,200,230,0.30));
}

.sec-sub {
  font-size: 1.0625rem;
  color: var(--t-muted);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.65;
}
.sec-sub--light { color: var(--t-white70); }

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-bottom: 0.5rem;
}
/* Dark-section eyebrow — brighter silver with a faint glow */
.eyebrow--light {
  color: var(--silver-lt);
  letter-spacing: 0.22em;
  text-shadow: 0 0 12px rgba(180,200,230,0.55);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  position: relative;
}
/* Atmospheric glow backdrop on dark-section headers */
.section-header--glow::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 580px; height: 260px;
  background: radial-gradient(ellipse, rgba(100,140,210,0.10) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.section-header--glow > * { position: relative; z-index: 1; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform var(--fast) var(--ease),
              box-shadow var(--fast) var(--ease),
              background var(--fast) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1;
}
.btn:active { transform: scale(0.97); }

/* White glow — primary CTA on dark bg */
.btn-white-glow {
  background: var(--t-white);
  color: var(--navy-800);
  border-color: var(--t-white);
  box-shadow: var(--glow-white);
}
.btn-white-glow:hover {
  box-shadow: var(--glow-white-h);
  transform: translateY(-2px);
}

/* Ghost on hero */
.btn-ghost-hero {
  background: transparent;
  color: var(--t-white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost-hero:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.75);
  box-shadow: 0 0 24px rgba(255,255,255,0.15);
}

/* Ghost on dark sections */
.btn-ghost-light {
  background: transparent;
  color: var(--t-white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.7);
  box-shadow: 0 0 24px rgba(255,255,255,0.15);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--navy-800);
  border-color: rgba(11,21,48,0.30);
}
.btn-ghost-dark:hover {
  background: rgba(11,21,48,0.06);
  border-color: rgba(11,21,48,0.55);
}

/* Nav CTA */
.btn-nav-cta {
  background: var(--t-white);
  color: var(--navy-800);
  border-color: var(--t-white);
  padding: 0.6rem 1.35rem;
  font-size: 0.875rem;
  box-shadow: 0 0 14px rgba(255,255,255,0.18), 0 2px 10px rgba(0,0,0,0.3);
}
.btn-nav-cta:hover {
  box-shadow: 0 0 28px rgba(255,255,255,0.35), 0 4px 18px rgba(0,0,0,0.35);
  transform: translateY(-1px);
}

/* Card CTA (on navy card) */
.btn-card-cta {
  width: 100%;
  background: var(--t-white);
  color: var(--navy-800);
  border-color: var(--t-white);
  box-shadow: 0 0 18px rgba(255,255,255,0.22), 0 4px 14px rgba(0,0,0,0.35);
}
.btn-card-cta:hover {
  box-shadow: 0 0 32px rgba(255,255,255,0.38), 0 8px 24px rgba(0,0,0,0.45);
  transform: translateY(-2px);
}

/* Platinum flagship CTA — highly visible, animated */
.btn-plat-cta {
  width: 100%;
  background: #FFFFFF;
  color: #0B1530;
  border: 2px solid rgba(255,255,255,0.9);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.875rem;
  box-shadow: 0 0 28px rgba(255,255,255,0.45),
              0 0 60px rgba(180,200,230,0.20),
              0 6px 20px rgba(0,0,0,0.4);
  animation: platBtnPulse 2.8s ease-in-out infinite;
}
.btn-plat-cta:hover {
  box-shadow: 0 0 44px rgba(255,255,255,0.65),
              0 0 80px rgba(180,200,230,0.30),
              0 10px 30px rgba(0,0,0,0.5);
  transform: translateY(-2px) scale(1.01);
  animation: none;
}
@keyframes platBtnPulse {
  0%,100% { box-shadow: 0 0 28px rgba(255,255,255,0.38), 0 0 60px rgba(180,200,230,0.12), 0 6px 20px rgba(0,0,0,0.4); }
  50%      { box-shadow: 0 0 44px rgba(255,255,255,0.58), 0 0 80px rgba(180,200,230,0.28), 0 6px 20px rgba(0,0,0,0.4); }
}

/* Biohazard CTA */
.btn-bh-cta {
  width: 100%;
  background: transparent;
  color: var(--t-white);
  border-color: rgba(255,255,255,0.35);
}
.btn-bh-cta:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.70);
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
}

/* Form submit — highly visible on the dark form card */
.btn-submit-form {
  width: 100%;
  background: var(--navy-600);
  color: var(--t-white);
  border: 2px solid rgba(255,255,255,0.85);
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(255,255,255,0.22),
              0 0 50px rgba(180,200,230,0.14),
              0 4px 20px rgba(0,0,0,0.45);
  animation: submitBtnPulse 2.8s ease-in-out infinite;
}
.btn-submit-form:hover {
  background: var(--navy-700);
  border-color: #FFFFFF;
  box-shadow: 0 0 36px rgba(255,255,255,0.40),
              0 0 70px rgba(180,200,230,0.22),
              0 8px 28px rgba(0,0,0,0.5);
  transform: translateY(-1px);
  animation: none;
}
@keyframes submitBtnPulse {
  0%,100% { box-shadow: 0 0 18px rgba(255,255,255,0.18), 0 0 50px rgba(180,200,230,0.10), 0 4px 20px rgba(0,0,0,0.45); }
  50%      { box-shadow: 0 0 32px rgba(255,255,255,0.34), 0 0 70px rgba(180,200,230,0.20), 0 4px 20px rgba(0,0,0,0.45); }
}

/* ── REVEAL ANIMATIONS ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-h {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-h.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-h { opacity: 1; transform: none; transition: none; }
}

/* ── NAV ──────────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
#nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 clamp(1rem, 5vw, 2.5rem);
  height: var(--nav-h);
  background: rgba(11,21,48,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--mid) var(--ease), box-shadow var(--mid) var(--ease);
}
#nav.scrolled {
  background: rgba(8,15,34,0.96);
  box-shadow: 0 4px 32px rgba(0,0,0,0.45);
}
.nav-logo { display: flex; align-items: center; }
.logo-img  { height: 54px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t-white70);
  border-radius: 5px;
  transition: color var(--fast), background var(--fast);
}
.nav-links a:hover { color: var(--t-white); background: rgba(255,255,255,0.07); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t-white70);
  margin-left: 1rem;
  transition: color var(--fast);
  white-space: nowrap;
}
.nav-phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-phone:hover { color: var(--t-white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  transition: background var(--fast);
}
.hamburger:hover { background: rgba(255,255,255,0.08); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--t-white);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--navy-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  padding: 0.75rem;
  color: var(--t-white70);
  border-radius: 8px;
  transition: color var(--fast), background var(--fast);
}
.mobile-close:hover { color: var(--t-white); background: rgba(255,255,255,0.08); }
.mobile-close svg { width: 24px; height: 24px; }
.mobile-logo { height: 56px; width: auto; margin-bottom: 0.5rem; filter: brightness(0) invert(1); opacity: 0.92; }
.mobile-nav ul {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.25rem; width: 100%; padding-inline: 2rem;
}
.mn-link {
  display: block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--t-white70);
  border-radius: 8px;
  transition: color var(--fast), background var(--fast);
}
.mn-link:hover { color: var(--t-white); background: rgba(255,255,255,0.07); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 1.6s var(--ease);
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,15,34,0.50) 0%,
    rgba(8,15,34,0.38) 40%,
    rgba(8,15,34,0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: clamp(1.25rem, 8vw, 4rem);
  max-width: 820px;
}
.hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.1rem;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--t-white);
  margin-bottom: 1.25rem;
}
.hero-headline em { font-style: italic; color: var(--silver-lt); }

/* ── HERO WORD-BY-WORD ANIMATION ──────────────────────────────── */
.hw {
  display: inline-block;
  opacity: 0;
  animation: wordReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.10s + var(--i) * 0.13s);
}
/* Words inside the shimmer <em> fade+blur only — no translateY so overflow:hidden doesn't clip */
.hero-shimmer .hw {
  animation-name: wordRevealFade;
}
@keyframes wordReveal {
  from { opacity: 0; transform: translateY(26px); filter: blur(3px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0);   }
}
@keyframes wordRevealFade {
  from { opacity: 0; filter: blur(6px); }
  to   { opacity: 1; filter: blur(0);   }
}

/* Hero shimmer sweep — fires after all words have revealed */
.hero-shimmer {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.hero-shimmer::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg,
    transparent 0%,
    rgba(255,255,255,0.28) 50%,
    transparent 100%);
  animation: heroShimmer 1.1s cubic-bezier(0.4, 0, 0.2, 1) 1.4s 1 both;
  pointer-events: none;
}
@keyframes heroShimmer {
  from { left: -75%; opacity: 1; }
  to   { left: 120%; opacity: 1; }
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--t-white70);
  margin-bottom: 2.25rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-reassure {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--t-white50);
  letter-spacing: 0.02em;
}
.scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: var(--t-white50);
  animation: bobDown 1.8s ease-in-out infinite;
  z-index: 1;
}
.scroll-cue svg { width: 28px; height: 28px; }
@keyframes bobDown {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── MARQUEE ──────────────────────────────────────────────────── */
.marquee-section {
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0.9rem 0;
  overflow: hidden;
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-white50);
}
.marquee-inner .mx { color: var(--silver); font-size: 0.55rem; letter-spacing: 0; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee-inner { animation: none; } }

/* ── TRUST BAR ────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-900);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 1rem 1.5rem;
}
.trust-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--t-white);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.trust-lbl {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--t-white50);
  text-transform: uppercase;
}
.trust-sep { width: 1px; height: 3rem; background: rgba(255,255,255,0.10); flex-shrink: 0; }

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
.hiw-section {
  background: var(--navy-800);
  padding: 7rem 0 6rem;
  position: relative;
}
.hiw-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%; height: 90%;
  background: radial-gradient(ellipse at center, rgba(100,140,210,0.09) 0%, rgba(180,200,230,0.04) 40%, transparent 70%);
  pointer-events: none;
}
/* Per-step radial halo behind each number */
.hiw-item {
  text-align: center;
  padding: 0 0.5rem;
  position: relative;
}
.hiw-item::before {
  content: '';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 260px; height: 180px;
  background: radial-gradient(ellipse at 50% 35%, rgba(180,200,230,0.11) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.hiw-grid {
  display: grid;
  grid-template-columns: 1fr 72px 1fr 72px 1fr;
  align-items: start;
  margin-top: 4rem;
}
.hiw-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.04em;
  padding-block-start: 0.05em;
  background: linear-gradient(160deg, #FFFFFF 0%, var(--silver-lt) 35%, var(--silver) 70%, rgba(180,200,230,0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(184,196,212,0.38));
  margin-bottom: 1.1rem;
  display: inline-block;
  position: relative; z-index: 1;
}
.hiw-accent {
  width: 32px;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(180,200,230,0.8), transparent);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
  position: relative; z-index: 1;
  box-shadow: 0 0 8px rgba(180,200,230,0.35);
}
.hiw-connector {
  display: flex;
  align-items: flex-start;
  padding-top: 3.1rem;
  justify-content: center;
}
.hiw-connector::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(180,200,230,0.05), rgba(180,200,230,0.35), rgba(180,200,230,0.05));
}
.hiw-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 600;
  position: relative; z-index: 1;
  color: var(--t-white);
  margin-bottom: 0.7rem;
}
.hiw-item p {
  font-size: 0.9rem;
  color: var(--t-white70);
  line-height: 1.7;
  max-width: 220px;
  margin-inline: auto;
  position: relative; z-index: 1;
}

/* ── PACKAGE QUIZ ─────────────────────────────────────────────── */
.quiz-section {
  background: var(--navy-900);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
/* Atmospheric background orbs — kept within section bounds so overflow:hidden
   clips cleanly without a hard visible edge */
.quiz-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
.quiz-orb--a {
  width: 480px; height: 480px;
  top: -60px; left: -60px;
  background: radial-gradient(circle, rgba(100,140,210,0.16) 0%, transparent 65%);
}
.quiz-orb--b {
  width: 380px; height: 380px;
  bottom: -50px; right: -50px;
  background: radial-gradient(circle, rgba(180,200,230,0.10) 0%, transparent 65%);
}
.quiz-card {
  max-width: 680px;
  margin-inline: auto;
  background: rgba(15,29,58,0.85);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(180,200,230,0.14);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 24px 80px rgba(0,0,0,0.55), 0 0 60px rgba(100,140,210,0.08);
  position: relative;
}
.quiz-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(180,200,230,0.4), transparent);
  pointer-events: none;
}

/* Progress bar */
.quiz-progress {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.qp-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
  position: relative;
}
@media (max-width: 500px) {
  .qp-step { padding: 0.75rem 0.75rem; gap: 0.4rem; }
  .qp-num  { font-size: 0.95rem; }
  .qp-label { font-size: 0.6rem; letter-spacing: 0.05em; }
}
.qp-step + .qp-step::before {
  content: '';
  position: absolute;
  left: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: rgba(255,255,255,0.07);
}
.qp-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--t-white30);
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
}
.qp-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-white30);
  transition: color 0.2s;
  line-height: 1.3;
}
.qp-step.active .qp-num  { color: var(--silver-lt); }
.qp-step.active .qp-label { color: var(--silver); }
.qp-step.active { border-bottom-color: var(--silver); }
.qp-step.done .qp-num   { color: var(--silver); }
.qp-step.done .qp-label  { color: var(--t-white50); }

/* Quiz body */
.quiz-body { padding: 2rem; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }

.quiz-q {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--t-white);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.quiz-hint {
  font-size: 0.875rem;
  color: var(--t-white50);
  margin-bottom: 1.5rem;
}

/* Option cards */
.quiz-options { display: flex; flex-direction: column; gap: 0.625rem; }
.quiz-options--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
/* Autofill flash animation */
@keyframes autofillFlash {
  0%   { border-color: rgba(180,200,230,0.65); box-shadow: 0 0 0 3px rgba(180,200,230,0.18); }
  60%  { border-color: rgba(180,200,230,0.4);  box-shadow: 0 0 0 2px rgba(180,200,230,0.1); }
  100% { border-color: rgba(255,255,255,0.12); box-shadow: none; }
}
.autofilled { animation: autofillFlash 2s ease-out forwards; }
.quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, box-shadow 0.18s;
  position: relative;
  user-select: none;
}
.quiz-option:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
}
.quiz-option.selected {
  background: rgba(180,200,230,0.09);
  border-color: rgba(180,200,230,0.65);
  box-shadow: 0 0 28px rgba(180,200,230,0.16), inset 0 0 0 1px rgba(180,200,230,0.06);
}
.quiz-option input[type="radio"],
.quiz-option input[type="checkbox"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}

/* Multi-select (extras) options use a square check indicator */
.quiz-option--check .qo-radio { border-radius: 6px; }

/* Option icon */
.qo-icon {
  font-size: 1.4rem;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  transition: background 0.2s, border-color 0.2s;
}
.quiz-option:hover .qo-icon {
  background: rgba(180,200,230,0.10);
  border-color: rgba(180,200,230,0.20);
}
.quiz-option.selected .qo-icon {
  background: rgba(180,200,230,0.12);
  border-color: rgba(180,200,230,0.28);
}

/* Option thumbnail image */
.qo-thumb {
  width: 64px; height: 54px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(180,200,230,0.08);
  border: 1px solid rgba(180,200,230,0.14);
}
.qo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.qo-thumb--icon {
  display: flex; align-items: center; justify-content: center;
}

/* Option pills */
.qo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.45rem;
}
.qo-pill {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--silver);
  background: rgba(180,200,230,0.08);
  border: 1px solid rgba(180,200,230,0.16);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
}

/* Option text */
.qo-text { flex: 1; }
.qo-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-white);
  margin-bottom: 0.25rem;
}
.qo-desc {
  display: block;
  font-size: 0.8125rem;
  color: var(--t-white50);
  line-height: 1.45;
}

/* Custom radio */
.qo-radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.18s;
}
.quiz-option.selected .qo-radio {
  border-color: var(--silver);
  background: rgba(180,200,230,0.15);
}
.quiz-option.selected .qo-radio::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--silver-lt);
  border-radius: 0;
  background: transparent;
  width: auto; height: auto;
}

/* Vehicle grid options (compact 2-col) */
.quiz-option--sm { padding: 0.75rem 1rem; gap: 0.6rem; }
.quiz-option--sm .qo-icon { width: 34px; height: 34px; font-size: 1.1rem; }
.quiz-option--sm .qo-title { font-size: 0.85rem; }

/* Quiz option badges */
.qo-badge {
  position: absolute;
  top: -1px; right: -1px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 0 var(--r-sm) 0 6px;
}
/* Most Popular badge */
.qo-badge:not(.qo-badge--sub) {
  background: var(--navy-600);
  color: var(--silver-lt);
  border: 1px solid rgba(180,200,230,0.25);
}
/* Subscription badge */
.qo-badge--sub {
  background: rgba(180,200,230,0.12);
  color: var(--silver-lt);
  border: 1px solid rgba(180,200,230,0.30);
}
/* Quiet category badge — used on options that don't need a hard sell */
.qo-badge--outline {
  background: transparent;
  color: var(--t-white50);
  border: 1px solid rgba(255,255,255,0.18);
}

/* Quiz nav */
.quiz-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}
.quiz-btn-back {
  padding: 0.75rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,0.20);
  border-radius: 6px;
  color: var(--t-white70);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  background: transparent;
  font-family: inherit;
}
.quiz-btn-back:hover { background: rgba(255,255,255,0.07); color: var(--t-white); }
.quiz-btn-next {
  flex: 1;
  padding: 0.85rem;
  background: var(--t-white);
  color: var(--navy-800);
  border: 2px solid var(--t-white);
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.03em;
  transition: box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 0 18px rgba(255,255,255,0.22), 0 4px 14px rgba(0,0,0,0.35);
  opacity: 0.4;
  pointer-events: none;
}
.quiz-btn-next.enabled {
  opacity: 1;
  pointer-events: auto;
  animation: quizBtnPulse 2.4s ease-in-out infinite;
}
.quiz-btn-next.enabled:hover {
  box-shadow: 0 0 40px rgba(255,255,255,0.50), 0 8px 24px rgba(0,0,0,0.45);
  transform: translateY(-1px);
  animation: none;
}
@keyframes quizBtnPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(255,255,255,0.22), 0 4px 14px rgba(0,0,0,0.35); }
  50%       { box-shadow: 0 0 36px rgba(255,255,255,0.42), 0 8px 24px rgba(0,0,0,0.40); }
}

/* Result */
.quiz-result { display: none; }
.quiz-result.active { display: block; }
.result-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  margin: -2rem -2rem 0;
  width: calc(100% + 4rem);
}
.result-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.result-body { padding-top: 1.75rem; }
.result-rec {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.5rem;
}
.result-pkg {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--t-white);
  margin-bottom: 0.5rem;
}
.result-reason {
  font-size: 0.9375rem;
  color: var(--t-white70);
  margin-bottom: 1.1rem;
  line-height: 1.55;
}
.result-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.result-includes li {
  font-size: 0.85rem;
  color: var(--t-white70);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.result-includes li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--silver);
  flex-shrink: 0;
  opacity: 0.6;
}
.result-flyn {
  background: rgba(180,200,230,0.05);
  border: 1px solid rgba(180,200,230,0.14);
  border-left: 3px solid rgba(180,200,230,0.40);
  border-radius: 0 6px 6px 0;
  padding: 0.875rem 1.1rem;
  margin-bottom: 1.5rem;
}
.result-flyn-msg {
  font-size: 0.875rem;
  color: var(--t-white70);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.result-flyn-sig {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 0.04em;
}
.result-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.result-actions .btn { flex: 1; min-width: 140px; }
.quiz-btn-restart {
  background: transparent;
  color: var(--t-white70);
  border: 1.5px solid rgba(255,255,255,0.20);
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.quiz-btn-restart:hover { background: rgba(255,255,255,0.07); color: var(--t-white); }

/* ── PACKAGES ─────────────────────────────────────────────────── */
.pkg-section {
  background: #F7F8FA;
  padding: 6rem 0;
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

/* Base card */
.pkg-card {
  background: var(--navy-700);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,21,48,0.14), 0 1px 4px rgba(11,21,48,0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11,21,48,0.20), 0 4px 12px rgba(11,21,48,0.10);
}

.card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  display: block;
}
.pkg-card:hover .card-img-wrap img { transform: scale(1.04); }

.card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.1rem;
}
.card-top { display: flex; flex-direction: column; gap: 0; }
.card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 600;
  color: var(--t-white); line-height: 1.1;
}
.card-pricing {
  display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0;
}
.price-from {
  font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--t-white50); line-height: 1;
}
.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-weight: 700;
  color: var(--t-white); line-height: 1;
}
.price-ast { font-size: 0.85rem; color: var(--t-white50); vertical-align: super; line-height: 0; }
.card-tag {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--silver);
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 0.55rem;
}
.card-desc { font-size: 0.875rem; color: var(--t-white70); line-height: 1.55; }

.svc-cols { display: flex; gap: 1rem; flex: 1; }
.svc-col  { flex: 1; }
.svc-head {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--silver);
  margin-bottom: 0.5rem; padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.svc-list { display: flex; flex-direction: column; gap: 0.3rem; }
.svc-list li {
  font-size: 0.8125rem; color: var(--t-white70);
  padding-left: 0.9rem; position: relative; line-height: 1.45;
}
.svc-list li::before {
  content: ''; position: absolute;
  left: 0; top: 0.56em;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--silver); opacity: 0.55;
}

/* Platinum card */
.pkg-card--platinum {
  background: linear-gradient(160deg, #0E1C38 0%, #1B2A5E 60%, #0E1C38 100%);
  border: 1px solid rgba(180,200,230,0.22);
  box-shadow: var(--glow-plat);
  animation: platCardGlow 3s ease-in-out infinite;
}
.pkg-card--platinum:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 90px rgba(180,200,230,0.28), 0 30px 80px rgba(0,0,0,0.65);
  animation: none;
}
@keyframes platCardGlow {
  0%,100% { box-shadow: 0 0 50px rgba(180,200,230,0.14), 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(180,200,230,0.18); }
  50%      { box-shadow: 0 0 80px rgba(180,200,230,0.26), 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(180,200,230,0.34); }
}
.plat-badge {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  z-index: 5;
  background: linear-gradient(135deg, rgba(184,196,212,0.22), rgba(212,220,232,0.12));
  border: 1px solid rgba(184,196,212,0.48);
  color: var(--silver-lt);
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}

/* Maintenance recurring badge */
.maint-badge {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  z-index: 5;
  background: rgba(180,200,230,0.14);
  border: 1px solid rgba(180,200,230,0.35);
  color: var(--silver-lt);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}

/* Subscription frequency strip — replaces perks SVG strip */
.subs-freq {
  padding: 0.9rem 1rem;
  background: rgba(180,200,230,0.05);
  border: 1px solid rgba(180,200,230,0.18);
  border-radius: var(--r-sm);
}
.subs-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.6rem;
}
.subs-pills {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
}
.subs-pill {
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(180,200,230,0.28);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--t-white);
  background: rgba(180,200,230,0.08);
  cursor: default;
  letter-spacing: 0.02em;
}
.subs-note {
  font-size: 0.75rem;
  color: var(--t-white50);
}

/* Biohazard card */
.pkg-card--bh { background: var(--navy-900); }
.bh-visual {
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.bh-ring {
  position: absolute;
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  animation: bh-spin 18s linear infinite;
}
.bh-ring::after {
  content: ''; position: absolute; inset: 12px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.04);
}
@keyframes bh-spin { to { transform: rotate(360deg); } }
.bh-svg { width: 72px; height: 72px; color: rgba(255,255,255,0.25); position: relative; z-index: 1; }
.bh-price-tag {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--silver); text-transform: uppercase;
}
.bh-svc-list { flex: 1; }

.pkg-footnote {
  margin-top: 1.75rem; text-align: center;
  font-size: 0.8125rem; color: var(--t-muted);
}

/* ── GALLERY ──────────────────────────────────────────────────── */
.gallery-section {
  background: #FFFFFF;
  padding: 6rem 0;
}
.gallery-grid {
  columns: 3;
  column-gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.g-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
}
.g-item img {
  width: 100%; height: auto; display: block;
  transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
  filter: brightness(0.92) saturate(1.08);
}
.g-item:hover img { transform: scale(1.04); filter: brightness(1.05) saturate(1.12); }
.gallery-cta { text-align: center; }

/* ── ADD-ONS ──────────────────────────────────────────────────── */
.addons-section {
  background: #F7F8FA;
  padding: 6rem 0;
}
.addons-wrap {
  max-width: 680px;
  margin-inline: auto;
  background: var(--navy-700);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--glow-card);
}
.addon-header-row {
  display: flex; justify-content: space-between;
  padding: 0.9rem 1.75rem;
  background: var(--navy-800);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--silver);
}
.addon-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.9rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 1rem;
  transition: background 0.15s;
}
.addon-row:hover { background: rgba(255,255,255,0.03); }
.addon-row--last { border-bottom: none; }
.addon-name { font-size: 0.9375rem; color: var(--t-white); line-height: 1.4; }
.addon-note { font-size: 0.8rem; color: var(--t-white50); }
.addon-price { font-size: 0.9375rem; font-weight: 600; color: var(--silver-lt); white-space: nowrap; flex-shrink: 0; }

/* ── BOOKING ──────────────────────────────────────────────────── */
.booking-section {
  background: var(--navy-900);
  padding: 6rem 0;
}
.form-card {
  background: #111E38;
  border-radius: var(--r);
  padding: clamp(1.75rem, 5vw, 2.75rem);
  max-width: 720px;
  margin-inline: auto;
  box-shadow: 0 20px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.05);
}

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.f-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.f-field:last-child { margin-bottom: 0; }

label {
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.03em; color: var(--t-white70);
}
.req { color: var(--silver); }

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  color: var(--t-white);
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--t-white50); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(180,200,230,0.45);
  box-shadow: 0 0 0 3px rgba(180,200,230,0.10);
}
input.error, select.error, textarea.error { border-color: #e66; }
.f-error { font-size: 0.8rem; color: #ff8888; min-height: 1rem; line-height: 1; }

.sel-wrap { position: relative; width: 100%; }
.sel-wrap select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  color: var(--t-white);
  font-size: 0.9375rem;
  width: 100%;
  appearance: none; -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sel-wrap select option { background: #111E38; color: var(--t-white); }
.sel-arrow {
  position: absolute; right: 0.875rem; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--t-white50);
  pointer-events: none;
}
.sel-sm.sel-wrap { width: auto; }
.sel-sm select { padding: 0.5rem 2rem 0.5rem 0.75rem; font-size: 0.875rem; }
textarea { resize: vertical; min-height: 80px; }

.addons-fs {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-sm);
  padding: 1.25rem 1.25rem 0.75rem;
  margin-bottom: 1.25rem;
}
.addons-fs legend {
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.03em; color: var(--t-white70);
  padding: 0 0.5rem;
}
.legend-note { font-size: 0.75rem; color: var(--t-white50); font-weight: 400; }

.cb-row {
  display: flex; align-items: flex-start;
  gap: 0.65rem; margin: 0.6rem 0; cursor: pointer;
}
.cb-row input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.cb-box {
  width: 18px; height: 18px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  flex-shrink: 0; margin-top: 2px;
  background: rgba(255,255,255,0.05);
  transition: all 0.15s; position: relative;
}
.cb-row input:checked + .cb-box { background: var(--navy-600); border-color: var(--silver); }
.cb-row input:checked + .cb-box::after {
  content: ''; position: absolute;
  left: 4px; top: 1px;
  width: 7px; height: 11px;
  border-right: 2px solid var(--t-white);
  border-bottom: 2px solid var(--t-white);
  transform: rotate(40deg);
}
.cb-text { font-size: 0.9rem; color: var(--t-white70); line-height: 1.45; }
.cb-text em { font-style: normal; color: var(--silver); }

.pet-qty {
  display: none; align-items: center;
  gap: 0.75rem; padding: 0.5rem 0 0.5rem 2rem;
  font-size: 0.875rem; color: var(--t-white70);
}
.pet-qty.visible { display: flex; }

.total-strip {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0 0.5rem;
}
.total-lbl { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.04em; color: var(--t-white70); }
.total-val { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--t-white); }
.total-note { font-size: 0.78rem; color: var(--t-white50); margin-bottom: 1.5rem; }

/* ── WHAT HAPPENS NEXT ────────────────────────────────────────── */
.whats-next {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
}
.wn-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1rem;
}
.wn-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.wn-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
}
.wn-icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  background: rgba(180,200,230,0.08);
  border: 1px solid rgba(180,200,230,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver);
}
.wn-icon svg { width: 14px; height: 14px; }
.wn-step p {
  font-size: 0.78rem;
  color: var(--t-white70);
  line-height: 1.35;
  margin: 0;
  max-width: 120px;
}
.wn-arrow {
  flex: 1;
  min-width: 16px;
  height: 1px;
  background: linear-gradient(to right, rgba(180,200,230,0.15), rgba(180,200,230,0.35), rgba(180,200,230,0.15));
  position: relative;
  margin: 0 0.5rem;
}
.wn-arrow::after {
  content: '›';
  position: absolute;
  right: -4px; top: 50%;
  transform: translateY(-50%);
  color: rgba(180,200,230,0.45);
  font-size: 0.9rem;
  line-height: 1;
}
@media (max-width: 560px) {
  .wn-steps { flex-direction: column; align-items: flex-start; gap: 0; }
  .wn-step { width: 100%; }
  .wn-step p { max-width: none; }
  .wn-arrow {
    flex: none;
    width: 1px;
    height: 20px;
    min-width: unset;
    margin: 0.15rem 0 0.15rem 14px;
    background: linear-gradient(to bottom, rgba(180,200,230,0.15), rgba(180,200,230,0.35), rgba(180,200,230,0.15));
  }
  .wn-arrow::after { content: none; }
}

.form-success { text-align: center; padding: 3rem 1.5rem; color: var(--t-white); }
.success-icon { width: 72px; height: 72px; margin: 0 auto 1.5rem; color: var(--silver-lt); }
.success-icon svg { width: 100%; height: 100%; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 600;
  margin-bottom: 0.75rem; line-height: 1.35;
}
.form-success p { color: var(--t-white70); font-size: 0.9375rem; }
.form-success a { color: var(--silver-lt); text-decoration: underline; }

/* ── CONTACT ──────────────────────────────────────────────────── */
.contact-section { background: var(--navy-800); padding: 6rem 0; }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem; align-items: start;
}
.contact-brand { display: flex; flex-direction: column; gap: 1rem; }
.contact-logo-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(180,200,230,0.12);
}
.contact-logo { height: 80px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.92; flex-shrink: 0; }
.contact-brand-text { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--t-white);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.contact-est {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--silver);
  opacity: 0.6;
}
.contact-tag  { font-size: 0.875rem; font-weight: 500; color: var(--t-white70); line-height: 1.5; }
.contact-area { font-size: 0.8rem; color: var(--t-white50); letter-spacing: 0.04em; }
.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--t-white); margin-bottom: 0.4rem;
}
.contact-sub { font-size: 0.9rem; color: var(--t-white70); margin-bottom: 1.5rem; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link {
  display: flex; align-items: center; gap: 0.875rem;
  padding: 0.875rem 1.25rem;
  background: var(--navy-700);
  border-radius: var(--r-sm);
  color: var(--t-white);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.contact-link:hover {
  background: var(--navy-600);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}
.c-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 8px; flex-shrink: 0;
}
.c-icon svg { width: 20px; height: 20px; }
.c-label {
  display: block; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--t-white50); margin-bottom: 0.1rem;
}
.c-val { display: block; font-size: 0.9375rem; font-weight: 600; color: var(--t-white); }
.social-head { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--t-white50); margin-bottom: 0.25rem; }
.social-handle { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 600; color: var(--t-white); margin-bottom: 1rem; }
.social-row { display: flex; gap: 0.75rem; }
.social-row a {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-700);
  border-radius: 10px;
  color: var(--t-white70);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.social-row a svg { width: 20px; height: 20px; }
.social-row a:hover {
  background: var(--navy-600); color: var(--t-white);
  box-shadow: 0 0 20px rgba(255,255,255,0.12), 0 8px 24px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.footer-copy, .footer-web { font-size: 0.8125rem; color: var(--t-white50); }
.footer-web a:hover { color: var(--t-white70); }
.footer-areas {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-areas-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-white30);
  margin-bottom: 0.5rem;
}
.footer-areas-list {
  font-size: 0.75rem;
  color: var(--t-white30);
  line-height: 1.8;
}

/* ── TRUST STARS ──────────────────────────────────────────────── */
.trust-stars {
  color: #F5C842;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* ── REVIEWS ──────────────────────────────────────────────────── */
.reviews-section {
  background: #F0F2F5;
  padding: 6rem 0;
}
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: -0.25rem;
}
.rr-stars { color: #F5C842; font-size: 1.1rem; letter-spacing: 0.06em; }
.rr-score { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--t-head); }
.rr-count { font-size: 0.875rem; color: var(--t-muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.review-card {
  background: #FFFFFF;
  border-radius: var(--r);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
}

.rv-quote {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 0.6;
  color: rgba(11,21,48,0.06);
  font-weight: 700;
  user-select: none;
  position: absolute;
  top: 1rem; left: 1.25rem;
}
.rv-text {
  font-size: 0.9375rem;
  color: var(--t-body);
  line-height: 1.65;
  flex: 1;
  padding-top: 1.5rem;
  position: relative;
  z-index: 1;
}
.rv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.rv-stars { color: #F5C842; font-size: 0.9rem; letter-spacing: 0.05em; }
.rv-name  { font-size: 0.875rem; font-weight: 600; color: var(--t-head); }

.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-section {
  background: var(--navy-900);
  padding: 6rem 0;
}
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item--last { border-bottom: none; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--t-white);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.18s;
}
.faq-q:hover { color: var(--silver-lt); }
.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.2s, transform 0.3s var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--t-white70);
  border-radius: 2px;
  transition: opacity 0.25s, transform 0.25s;
}
.faq-icon::before { width: 10px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1.5px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

.faq-q[aria-expanded="true"] .faq-icon { border-color: var(--silver); transform: rotate(45deg); }
.faq-q[aria-expanded="true"] { color: var(--silver-lt); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}
.faq-a.open { max-height: 300px; padding-bottom: 1.25rem; }
.faq-a p {
  font-size: 0.9375rem;
  color: var(--t-white70);
  line-height: 1.7;
}

/* ── FLOATING CTA ─────────────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  background: var(--t-white);
  color: var(--navy-800);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 0 24px rgba(255,255,255,0.30), 0 8px 32px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease),
              box-shadow 0.2s var(--ease);
}
.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-cta:hover {
  box-shadow: 0 0 40px rgba(255,255,255,0.48), 0 12px 40px rgba(0,0,0,0.55);
  transform: translateY(-2px);
}
.float-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── SECTION UTILITY ──────────────────────────────────────────── */
.section { padding: 6rem 0; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hiw-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hiw-connector { display: none; }
  .hiw-item { padding: 0; }
  .hiw-item p { max-width: 280px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid { columns: 2; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .wn-steps { gap: 0.75rem; }
}

@media (max-width: 768px) {
  /* nav */
  .nav-links, .btn-nav-cta, .nav-phone { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  /* section rhythm */
  .section { padding: 4rem 0; }
  .hiw-section { padding: 4rem 0; }
  .quiz-section { padding: 4rem 0; }

  /* hero */
  .hero-headline { font-size: clamp(2.2rem, 9vw, 3.6rem); }
  .hero-sub { font-size: 1rem; }
  .hero-ctas { gap: 0.75rem; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* trust bar — 2 × 2 grid on mobile */
  .trust-sep { display: none; }
  .trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
    justify-items: center;
  }

  /* packages */
  .pkg-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  /* quiz */
  .quiz-body { padding: 1.5rem 1.25rem; }
  .qpanel-grid { grid-template-columns: 1fr; }

  /* booking */
  .f-row { grid-template-columns: 1fr; }

  /* what happens next — handled by 560px breakpoint */

  /* footer */
  .f-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .logo-img { height: 44px; }

  /* section rhythm */
  .section { padding: 3rem 0; }
  .hiw-section { padding: 3.5rem 0; }
  .quiz-section { padding: 3.5rem 0; }

  /* hero */
  .hero { min-height: 100svh; }
  .hero-content { padding-inline: 1.25rem; }
  .hero-headline { font-size: clamp(1.9rem, 10vw, 2.6rem); line-height: 1.1; }
  .hero-eyebrow { font-size: 0.625rem; margin-bottom: 0.75rem; }
  .hero-reassure { font-size: 0.75rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; }

  /* section headers */
  .sec-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .sec-sub { font-size: 0.9375rem; }

  /* trust */
  .trust-num { font-size: 1.5rem; }

  /* HIW numbers */
  .hiw-num { font-size: clamp(3rem, 12vw, 4.5rem); }

  /* quiz card */
  .quiz-card { margin-inline: 0.75rem; }
  .quiz-body { padding: 1.25rem 1rem; }
  .quiz-option { padding: 0.75rem 0.875rem; gap: 0.625rem; }
  .qpanel-header { padding: 0.875rem 1rem; }

  /* packages */
  .pkg-grid { max-width: 100%; }
  .svc-cols { flex-direction: column; gap: 0.75rem; }

  /* gallery */
  .gallery-grid { columns: 1; }

  /* reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* booking */
  .form-card { padding: 1.5rem 1.25rem; }
  .total-display { padding: 1rem; }
  .result-actions { flex-direction: column; }
  .result-actions .btn { min-width: unset; width: 100%; }

  /* contact */
  .contact-wrap { gap: 2rem; }

  /* footer */
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-areas-list { font-size: 0.8rem; }

  /* floating cta */
  .float-cta { bottom: 1.25rem; right: 1.25rem; padding: 0.75rem 1.25rem; font-size: 0.85rem; }
}
