/* ==========================================================================
   Obsessive Crew — site.css
   Brand: navy #01619D · deep navies #024b79/#01324f · cyan accent #35b6ff
   Type:  Anton (display, all-caps) + Inter (body)
   No JS animation libraries — CSS only, prefers-reduced-motion respected.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --brand: #01619D;
  --brand-600: #0273ba;
  --navy-800: #024b79;
  --navy-900: #01324f;
  --navy-950: #02233a;
  --cyan: #35b6ff;
  --cyan-300: #7ed0ff;
  --cyan-soft: rgba(53, 182, 255, 0.14);
  --ink: #0e2433;
  --muted: #52646f;
  --paper: #f5f3ee;
  --card: #ffffff;
  --line: #e5e1d8;
  --line-navy: rgba(255, 255, 255, 0.14);
  --danger: #c0392b;
  --success: #1e8e5a;
  --wa-green: #25d366;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 10px 30px rgba(2, 35, 58, 0.10);
  --shadow-pop: 0 14px 40px rgba(2, 35, 58, 0.18);
  --font-display: 'Anton', 'Arial Narrow', 'Franklin Gothic Medium', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --totalbar-h: 76px;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* Author display rules (e.g. .pay-stage{display:grid}) beat the UA's
   [hidden] default — this keeps the hidden attribute authoritative. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.15; }
p { margin: 0 0 1em; }
ul, ol, dl, dd, dt, fieldset, legend { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
fieldset { border: 0; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 4px; }

.container { width: min(1120px, 100% - 2.5rem); margin-inline: auto; }
.container-sm { width: min(720px, 100% - 2rem); margin-inline: auto; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 3000;
  background: var(--cyan); color: var(--navy-950); padding: 0.6rem 1.2rem;
  font-weight: 700; border-radius: 0 0 var(--radius-sm) 0; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Type helpers ---------- */
.section-eyebrow {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 0.6rem;
}
.section-eyebrow-light { color: var(--cyan); }
.section-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.9rem, 4.5vw, 3rem); letter-spacing: 0.02em;
  color: var(--navy-900); margin-bottom: 1.6rem;
}
.section-title-light { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.7rem; border: 0; border-radius: 999px;
  font-weight: 700; font-size: 1rem; line-height: 1.2; text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-cta {
  background: var(--cyan); color: var(--navy-950);
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.08em; box-shadow: 0 8px 22px rgba(53, 182, 255, 0.35);
}
.btn-cta:hover { background: var(--cyan-300); box-shadow: 0 12px 28px rgba(53, 182, 255, 0.45); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(1, 97, 157, 0.28); }
.btn-primary:hover { background: var(--brand-600); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.4); }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.1rem; }
.btn-block { width: 100%; }
.btn[disabled], .btn:disabled {
  opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none;
}
.btn-link {
  background: none; border: 0; padding: 0.4rem 0.2rem; color: var(--brand);
  font-weight: 600; text-decoration: underline; text-underline-offset: 3px;
  display: inline-block;
}

/* ==========================================================================
   Landing — nav
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(1, 50, 79, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-inner { display: flex; align-items: center; gap: 1.5rem; padding: 0.65rem 0; }
.nav-brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  color: #fff; text-decoration: none; font-weight: 800; letter-spacing: 0.02em;
}
.nav-brand img { border-radius: 10px; }
.nav-brand-name { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.06em; font-size: 1.05rem; }
.nav-links { display: flex; gap: 1.4rem; margin-left: auto; }
.nav-links a {
  color: rgba(255, 255, 255, 0.85); text-decoration: none; font-weight: 600; font-size: 0.95rem;
  padding: 0.3rem 0.1rem; border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover { color: #fff; border-bottom-color: var(--cyan); }
.nav-cta { padding: 0.6rem 1.3rem; font-size: 0.95rem; }

/* ==========================================================================
   Landing — hero
   ========================================================================== */
.hero {
  position: relative; overflow: clip;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(53, 182, 255, 0.22), transparent 60%),
    radial-gradient(900px 600px at -12% 108%, rgba(2, 115, 186, 0.5), transparent 62%),
    linear-gradient(168deg, var(--navy-900) 0%, var(--brand) 90%);
  color: #fff;
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(6rem, 11vw, 9rem);
}
.hero-art { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute; top: -20%; right: -8%; width: 55vw; height: 55vw;
  max-width: 760px; max-height: 760px; border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 208, 255, 0.16), transparent 65%);
}
.hero-watermark {
  position: absolute; bottom: -0.14em; right: -0.04em;
  font-family: var(--font-display); text-transform: uppercase; line-height: 1;
  font-size: clamp(7rem, 24vw, 22rem);
  color: rgba(255, 255, 255, 0.028);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  user-select: none; white-space: nowrap;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(3rem, 10vw, 6.4rem); line-height: 0.98; letter-spacing: 0.015em;
  margin: 0 0 1.2rem;
}
.ht-line { display: block; }
.hero-title .ht-line { animation: heroRise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero-title .ht-line + .ht-line { animation-delay: 0.12s; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.ht-outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--cyan);
}
@supports not (-webkit-text-stroke: 1px #fff) {
  .ht-outline { color: var(--cyan); }
}
.ht-drop { color: var(--cyan); -webkit-text-stroke: 0; }
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255, 255, 255, 0.88);
  max-width: 34em; margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.2rem; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.trust-chips li {
  font-size: 0.85rem; font-weight: 600; color: rgba(255, 255, 255, 0.92);
  background: rgba(2, 35, 58, 0.4); border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px; padding: 0.42rem 0.95rem;
}
.trust-chips a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
.trust-chips a:hover { border-bottom-color: var(--cyan); }

/* Bubbles — pure CSS rising field */
.bubbles { position: absolute; inset: 0; overflow: hidden; }
.bubbles i {
  position: absolute; bottom: -60px; display: block; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.05) 62%, transparent 72%);
  border: 1px solid rgba(255, 255, 255, 0.17);
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 0.9; }
  100% { transform: translate(26px, -108vh); opacity: 0; }
}
.bubbles i:nth-child(1)  { left: 5%;  width: 14px; height: 14px; animation-duration: 12s;  animation-delay: 0s; }
.bubbles i:nth-child(2)  { left: 12%; width: 26px; height: 26px; animation-duration: 15s;  animation-delay: 2.2s; }
.bubbles i:nth-child(3)  { left: 21%; width: 10px; height: 10px; animation-duration: 10s;  animation-delay: 4.5s; }
.bubbles i:nth-child(4)  { left: 30%; width: 20px; height: 20px; animation-duration: 14s;  animation-delay: 1.4s; }
.bubbles i:nth-child(5)  { left: 39%; width: 8px;  height: 8px;  animation-duration: 9s;   animation-delay: 6s; }
.bubbles i:nth-child(6)  { left: 48%; width: 30px; height: 30px; animation-duration: 17s;  animation-delay: 3.2s; }
.bubbles i:nth-child(7)  { left: 57%; width: 12px; height: 12px; animation-duration: 11s;  animation-delay: 7.6s; }
.bubbles i:nth-child(8)  { left: 66%; width: 22px; height: 22px; animation-duration: 13s;  animation-delay: 0.8s; }
.bubbles i:nth-child(9)  { left: 74%; width: 9px;  height: 9px;  animation-duration: 10s;  animation-delay: 5.1s; }
.bubbles i:nth-child(10) { left: 82%; width: 18px; height: 18px; animation-duration: 16s;  animation-delay: 2.8s; }
.bubbles i:nth-child(11) { left: 90%; width: 13px; height: 13px; animation-duration: 12s;  animation-delay: 8.4s; }
.bubbles i:nth-child(12) { left: 96%; width: 24px; height: 24px; animation-duration: 18s;  animation-delay: 4s; }

/* ---------- Waves ---------- */
.wave { display: block; width: 100%; height: clamp(40px, 7vw, 90px); }
.hero .wave { position: absolute; bottom: -1px; left: 0; }
.wave-paper { color: var(--paper); }
.wave-white { color: #fff; }
.wave-brand { color: var(--brand); }
.wave-flip { transform: scaleY(-1); }

/* ---------- Sections ---------- */
.section-paper { background: var(--paper); padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-white { background: #fff; padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-navy {
  position: relative;
  background: linear-gradient(165deg, var(--navy-900), var(--navy-800));
  color: #fff; padding: 0 0 clamp(1rem, 3vw, 2rem);
}
.section-navy .container { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.section-navy-deep {
  background:
    radial-gradient(900px 420px at 50% 120%, rgba(53, 182, 255, 0.18), transparent 65%),
    var(--navy-950);
  color: #fff; text-align: center; padding: clamp(4rem, 9vw, 7rem) 0;
}

/* ---------- How it works ---------- */
.how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  counter-reset: step;
}
.how-step {
  position: relative; background: var(--card); border-radius: var(--radius);
  padding: 2rem 1.6rem 1.6rem; box-shadow: var(--shadow-card);
  border-top: 4px solid var(--brand);
}
.how-step:nth-child(2) { border-top-color: var(--cyan); }
.how-num {
  font-family: var(--font-display); font-size: 2.6rem; line-height: 1;
  color: var(--cyan-soft); -webkit-text-stroke: 1.5px var(--brand);
  display: block; margin-bottom: 0.7rem;
}
.how-step h3 { font-size: 1.15rem; font-weight: 800; }
.how-step p { color: var(--muted); margin: 0; font-size: 0.97rem; }

/* ---------- Pricing (CSS-only sedan/SUV toggle) ---------- */
.veh-radio {
  position: absolute; width: 1px; height: 1px; opacity: 0; margin: 0;
  pointer-events: none;
}
.veh-toggle {
  display: inline-flex; background: var(--paper); border: 1.5px solid var(--line);
  border-radius: 999px; padding: 4px; margin-bottom: 2rem; gap: 2px;
}
.veh-toggle-opt {
  padding: 0.55rem 1.6rem; border-radius: 999px; font-weight: 700;
  color: var(--muted); cursor: pointer; transition: background-color 0.15s ease, color 0.15s ease;
  user-select: none;
}
#veh-sedan:checked ~ .container label[for="veh-sedan"],
#veh-suv:checked ~ .container label[for="veh-suv"] {
  background: var(--navy-900); color: #fff;
}
#veh-sedan:focus-visible ~ .container label[for="veh-sedan"],
#veh-suv:focus-visible ~ .container label[for="veh-suv"] {
  outline: 3px solid var(--cyan); outline-offset: 2px;
}
#veh-sedan:checked ~ .container .only-suv { display: none !important; }
#veh-suv:checked ~ .container .only-sedan { display: none !important; }

.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  align-items: start;
}
.pkg-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1.5px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.pkg-card.is-popular { border-color: var(--cyan); }
.pkg-head {
  position: relative; color: #fff; padding: 1.5rem 1.5rem 1.3rem;
  background: linear-gradient(150deg, var(--navy-900), var(--brand));
  overflow: hidden;
}
.pkg-num {
  position: absolute; top: -0.18em; right: 0.05em;
  font-family: var(--font-display); font-size: 5rem; line-height: 1;
  color: rgba(255, 255, 255, 0.07); user-select: none;
}
.pkg-tag {
  display: inline-block; background: var(--cyan); color: var(--navy-950);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 999px; padding: 0.22rem 0.7rem; margin-bottom: 0.55rem;
}
.pkg-name { font-size: 1.18rem; font-weight: 800; margin-bottom: 0.6rem; position: relative; }
.pkg-price {
  font-family: var(--font-display); font-size: 2.9rem; line-height: 1;
  margin: 0; position: relative;
}
.pkg-curr { font-size: 1rem; vertical-align: super; margin-right: 0.3rem; letter-spacing: 0.08em; color: var(--cyan-300); }
.pkg-duration { margin: 0.35rem 0 0; font-size: 0.85rem; color: rgba(255, 255, 255, 0.75); position: relative; }
.pkg-includes { padding: 1.3rem 1.5rem 0.4rem; flex: 1; }
.pkg-includes li {
  position: relative; padding: 0.32rem 0 0.32rem 1.7rem; font-size: 0.95rem;
  border-bottom: 1px dashed var(--line);
}
.pkg-includes li:last-child { border-bottom: 0; }
.pkg-includes li::before {
  content: ''; position: absolute; left: 0; top: 0.72em;
  width: 15px; height: 15px; border-radius: 50% 50% 50% 0;
  background: var(--cyan-soft); border: 1.5px solid var(--brand);
  transform: rotate(-45deg);
}
.pkg-cta { padding: 1rem 1.5rem 1.5rem; }
.pkg-cta .btn { width: 100%; }
.pricing-note { color: var(--muted); font-size: 0.9rem; margin-top: 1.6rem; }

/* ---------- Gallery (Instagram proof) ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item img {
  display: block; width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  transition: transform 0.15s ease;
}
.gallery-item img:hover { transform: translateY(-2px); }
.gallery-cta { margin-top: 1.8rem; }
@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Areas ---------- */
.area-chips { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.area-chips li {
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 999px;
  padding: 0.5rem 1.1rem; font-weight: 600; font-size: 0.93rem;
}
.area-chip-accent { background: var(--cyan-soft); border-color: var(--cyan); }
.area-chip-accent a { text-decoration: none; font-weight: 700; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.why-item {
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line-navy);
  border-radius: var(--radius); padding: 1.6rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.why-item:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(126, 208, 255, 0.4); }
.why-icon { display: inline-block; width: 44px; height: 44px; color: var(--cyan); margin-bottom: 0.8rem; }
.why-icon svg { width: 100%; height: 100%; }
.why-item h3 { font-size: 1.1rem; font-weight: 800; color: #fff; }
.why-item p { color: rgba(255, 255, 255, 0.78); margin: 0; font-size: 0.96rem; }

/* ---------- Instagram band ---------- */
.igband { background: var(--brand); color: #fff; padding: 2.6rem 0; overflow: clip; position: relative; }
.ig-marquee { overflow: hidden; margin-bottom: 1.6rem; }
.ig-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.ig-chunk {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 2.6rem); letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9); white-space: nowrap; padding-right: 2rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.igband-cta { text-align: center; }

/* ---------- FAQ ---------- */
.faq {
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: 0.8rem; overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 1.05rem 3rem 1.05rem 1.3rem;
  font-weight: 700; position: relative; user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 1.2rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display); font-size: 1.4rem; color: var(--brand);
  transition: transform 0.2s ease;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq[open] summary { color: var(--brand); }
.faq p { padding: 0 1.3rem 1.2rem; margin: 0; color: var(--muted); }

/* ---------- Big CTA ---------- */
.bigcta-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 4.6rem); line-height: 1.02; margin-bottom: 1.6rem;
}
.bigcta-accent {
  color: transparent; -webkit-text-stroke: 2px var(--cyan);
}
@supports not (-webkit-text-stroke: 1px #fff) {
  .bigcta-accent { color: var(--cyan); }
}

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: rgba(255, 255, 255, 0.85); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand img { border-radius: 12px; margin-bottom: 0.9rem; }
.footer-tag { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 1.2rem; color: #fff; margin-bottom: 0.3rem; }
.footer-sub { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }
.footer-col h3 {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--cyan); margin-bottom: 0.9rem;
}
.footer-col a {
  display: block; color: rgba(255, 255, 255, 0.85); text-decoration: none;
  padding: 0.28rem 0; font-size: 0.96rem;
}
.footer-col a:hover { color: var(--cyan-300); }
.footer-legal {
  border-top: 1px solid var(--line-navy); padding-top: 1.4rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-legal p { color: rgba(255, 255, 255, 0.55); font-size: 0.85rem; margin: 0; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 1500;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.18s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }
.page-book .whatsapp-float { bottom: calc(var(--totalbar-h) + 1.1rem); }

/* ==========================================================================
   Booking wizard page
   ========================================================================== */
.page-book {
  background:
    radial-gradient(1000px 500px at 90% -6%, rgba(53, 182, 255, 0.14), transparent 60%),
    linear-gradient(170deg, var(--navy-950), var(--navy-900) 55%, var(--navy-800));
  min-height: 100svh;
  padding-bottom: calc(var(--totalbar-h) + 2rem);
}
.wiznav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem clamp(1rem, 3vw, 2rem);
}
.wiznav-brand {
  display: inline-flex; align-items: center; gap: 0.65rem;
  color: #fff; text-decoration: none; font-weight: 700; font-size: 0.95rem;
}
.wiznav-brand img { border-radius: 9px; }
.wiznav-wa {
  color: var(--cyan-300); text-decoration: none; font-weight: 600; font-size: 0.9rem;
  border: 1px solid rgba(126, 208, 255, 0.35); border-radius: 999px; padding: 0.4rem 1rem;
  transition: background-color 0.15s ease;
}
.wiznav-wa:hover { background: rgba(53, 182, 255, 0.12); }

.wizard-head { text-align: center; padding: clamp(1rem, 4vw, 2.4rem) 0 0.6rem; color: #fff; }
.wizard-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.1rem, 6vw, 3.2rem); letter-spacing: 0.02em; margin-bottom: 0.3rem;
}
.wizard-sub { color: rgba(255, 255, 255, 0.75); margin: 0; }

/* Progress */
.progress { padding: 1.2rem 0 1rem; }
.progress-text {
  color: var(--cyan-300); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 0.55rem; text-align: center;
}
.progress-bar { display: flex; gap: 6px; }
.progress-bar li {
  flex: 1; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, 0.16);
  transition: background-color 0.3s ease;
}
.progress-bar li.done { background: var(--cyan); }
.progress-bar li.current { background: var(--cyan-300); }

.noscript-box {
  background: #fff4d6; border: 1.5px solid #e5c86a; border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; margin-bottom: 1rem;
}
.noscript-box p { margin: 0; }

/* Wizard card */
.wizard {
  background: var(--card); border-radius: 22px; box-shadow: var(--shadow-pop);
  padding: clamp(1.3rem, 4vw, 2.2rem);
  position: relative;
}
.wstep { display: none; }
.wstep.active { display: block; animation: stepIn 0.28s ease both; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.wstep-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.4rem, 4vw, 1.9rem); color: var(--navy-900);
  letter-spacing: 0.02em; margin-bottom: 0.9rem;
}
.wstep-sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.2rem; }

/* Pick pattern (hidden input + card label) */
.pick { position: relative; }
.pick-input { position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; }
.choice-card {
  display: block; border: 2px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.2rem; cursor: pointer; background: #fff;
  transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.choice-card:hover { border-color: var(--brand); transform: translateY(-2px); }
.pick-input:checked + .choice-card {
  border-color: var(--brand); background: var(--cyan-soft);
  box-shadow: 0 6px 18px rgba(1, 97, 157, 0.15);
}
.pick-input:focus-visible + .choice-card { outline: 3px solid var(--cyan); outline-offset: 2px; }

/* Step 1 — vehicle class */
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.class-card { text-align: center; padding: 1.6rem 1rem 1.3rem; }
.class-icon { display: block; width: 96px; margin: 0 auto 0.6rem; color: var(--brand); }
.class-icon svg { width: 100%; height: auto; }
.choice-name { display: block; font-weight: 800; font-size: 1.12rem; color: var(--navy-900); }
.choice-hint { display: block; color: var(--muted); font-size: 0.85rem; margin-top: 0.15rem; }

/* Step 2 — packages */
.pkg-pick-list { display: grid; gap: 1rem; }
.pkg-pick-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.pkg-pick-price {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--brand); white-space: nowrap;
}
.pkg-pick-meta { display: block; color: var(--muted); font-size: 0.85rem; margin: 0.1rem 0 0.6rem; }
.pkg-pick-includes { display: flex; flex-wrap: wrap; gap: 0.35rem 0.7rem; }
.pkg-pick-includes li {
  position: relative; font-size: 0.85rem; color: var(--muted); padding-left: 1rem;
}
.pkg-pick-includes li::before {
  content: ''; position: absolute; left: 0; top: 0.5em; width: 7px; height: 7px;
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  background: var(--cyan); opacity: 0.8;
}

/* Step 4 — date & time */
.date-strip {
  display: flex; gap: 0.55rem; overflow-x: auto; padding: 0.2rem 0.1rem 0.8rem;
  scroll-snap-type: x proximity; scrollbar-width: none;
}
.date-strip::-webkit-scrollbar { display: none; }
.date-chip {
  scroll-snap-align: start; flex: 0 0 auto; min-width: 74px;
  border: 2px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  padding: 0.5rem 0.4rem; text-align: center; cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.date-chip:hover { border-color: var(--brand); }
.date-chip.selected { border-color: var(--brand); background: var(--navy-900); color: #fff; }
.date-chip.closed { opacity: 0.45; cursor: not-allowed; text-decoration: line-through; }
.dc-dow { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.date-chip.selected .dc-dow { color: var(--cyan-300); }
.dc-day { display: block; font-family: var(--font-display); font-size: 1.45rem; line-height: 1.15; }
.dc-mon { display: block; font-size: 0.72rem; color: var(--muted); }
.date-chip.selected .dc-mon { color: rgba(255, 255, 255, 0.75); }

.slot-hours { color: var(--muted); font-size: 0.85rem; margin: 0.2rem 0 0.8rem; }
.slot-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 0.6rem;
}
.slot-btn {
  border: 2px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  padding: 0.55rem 0.3rem 0.5rem; text-align: center; cursor: pointer;
  font-weight: 700; font-size: 0.95rem; line-height: 1.25; color: var(--ink);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.slot-btn:hover { border-color: var(--brand); }
.slot-btn.selected { background: var(--brand); border-color: var(--brand); color: #fff; }
.slot-btn small { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.02em; }
.slot-btn .slot-scarce { color: var(--danger); }
.slot-btn.selected .slot-scarce { color: #ffd7d1; }
.slot-btn.soldout, .slot-btn.past {
  cursor: not-allowed; background: var(--paper); color: var(--muted); border-style: dashed;
}
.slot-btn.soldout .slot-time { text-decoration: line-through; }
.slot-btn.past { opacity: 0.55; }
.slot-empty {
  background: var(--paper); border: 1.5px dashed var(--line); border-radius: var(--radius-sm);
  padding: 1.4rem 1.2rem; text-align: center; color: var(--muted);
}
.slot-empty .btn-link { margin-top: 0.4rem; }
.slot-spinner { display: flex; justify-content: center; padding: 1.6rem 0; }
.slot-spinner::after {
  content: ''; width: 28px; height: 28px; border-radius: 50%;
  border: 3px solid var(--line); border-top-color: var(--brand);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Step 5 — details form */
.form-group { margin-bottom: 1.6rem; }
.form-group legend {
  font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--brand); margin-bottom: 0.8rem;
}
.field { margin-bottom: 0.95rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.3rem; }
.req { color: var(--danger); }
.opt { color: var(--muted); font-weight: 400; font-size: 0.85rem; }
.field input, .field textarea {
  width: 100%; border: 2px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-size: 16px; /* prevents iOS focus zoom */
  background: #fff; transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus {
  border-color: var(--brand); outline: 2px solid var(--cyan-soft); outline-offset: 0;
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--danger); }
.field-hint { color: var(--muted); font-size: 0.82rem; margin: 0.3rem 0 0; }
.field-err { color: var(--danger); font-size: 0.85rem; font-weight: 600; margin: 0.3rem 0 0; }

/* Honeypot — off-screen, not display:none (some bots skip hidden fields) */
.hp-field {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px;
  overflow: hidden;
}

/* Step 6 — payment */
.pay-summary {
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.3rem; margin-bottom: 1.3rem;
}
.pay-summary dl { display: block; }
.pay-summary .sum-row {
  display: flex; justify-content: space-between; gap: 1rem; padding: 0.28rem 0;
  font-size: 0.95rem;
}
.pay-summary .sum-row dt { color: var(--muted); }
.pay-summary .sum-row dd { font-weight: 600; text-align: right; }
.pay-summary .sum-price { border-top: 1px dashed var(--line); margin-top: 0.5rem; padding-top: 0.55rem; }
.pay-summary .sum-total { font-size: 1.05rem; }
.pay-summary .sum-total dd { font-family: var(--font-display); font-size: 1.4rem; color: var(--brand); font-weight: 400; }
.pay-options { display: grid; gap: 0.9rem; }
.pay-card { padding: 1.05rem 1.2rem; }
.pay-card-title { display: block; font-weight: 800; font-size: 1.02rem; color: var(--navy-900); }
.pay-card-sub { display: block; color: var(--muted); font-size: 0.88rem; margin-top: 0.15rem; }
.pay-notice {
  background: #fff4d6; border: 1.5px solid #e5c86a; border-radius: var(--radius-sm);
  padding: 0.8rem 1rem; font-size: 0.92rem; margin: 0;
}
.pay-error {
  background: #fdeceb; border: 1.5px solid #eebbb5; border-radius: var(--radius-sm);
  color: var(--danger); padding: 0.8rem 1rem; font-size: 0.92rem; font-weight: 600; margin: 0;
  animation: shake 0.4s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
.pay-stage { display: grid; gap: 1rem; }
.pay-stage-note { color: var(--muted); font-size: 0.9rem; margin: 0; }
#payment-element { min-height: 90px; }
.pay-secure {
  color: var(--muted); font-size: 0.82rem; text-align: center; margin: 1.2rem 0 0;
}

/* Wizard nav */
.wizard-nav {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1.5px solid var(--line);
}
.btn-back {
  background: none; border: 0; color: var(--muted); font-weight: 700;
  padding: 0.6rem 0.4rem;
}
.btn-back:hover { color: var(--navy-900); }
.btn-next { margin-left: auto; min-width: 46%; }

.wizard-trust {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0.6rem;
  padding: 1.4rem 0 0.8rem;
}
.wizard-trust li {
  color: rgba(255, 255, 255, 0.8); font-size: 0.82rem; font-weight: 600;
  border: 1px solid var(--line-navy); border-radius: 999px; padding: 0.35rem 0.9rem;
}

/* Sticky total bar */
.totalbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
  min-height: var(--totalbar-h);
  background: var(--navy-950); color: #fff;
  border-top: 1px solid rgba(126, 208, 255, 0.25);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.7rem clamp(1rem, 4vw, 2rem);
  box-shadow: 0 -8px 30px rgba(2, 35, 58, 0.45);
}
.totalbar-info { min-width: 0; }
.totalbar-title {
  display: block; font-weight: 700; font-size: 0.95rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.totalbar-meta { display: block; color: var(--cyan-300); font-size: 0.8rem; }
.totalbar-right { text-align: right; flex: 0 0 auto; }
.totalbar-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255, 255, 255, 0.6); }
.totalbar-total { font-family: var(--font-display); font-size: 1.6rem; line-height: 1.1; color: var(--cyan); }

/* Toast */
.toast {
  position: fixed; top: 1rem; left: 50%; transform: translateX(-50%); z-index: 2000;
  background: var(--navy-950); color: #fff; border: 1px solid rgba(126, 208, 255, 0.4);
  border-radius: 999px; padding: 0.75rem 1.4rem; font-weight: 600; font-size: 0.95rem;
  box-shadow: var(--shadow-pop); max-width: min(92vw, 480px); text-align: center;
  animation: toastIn 0.25s ease both;
}
@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, -8px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ==========================================================================
   Status pages (success / receipt / canceled)
   ========================================================================== */
.page-status {
  background:
    radial-gradient(1000px 500px at 85% -5%, rgba(53, 182, 255, 0.14), transparent 60%),
    linear-gradient(170deg, var(--navy-950), var(--navy-900) 60%, var(--navy-800));
  min-height: 100svh;
}
.status-page { padding: clamp(1.5rem, 5vw, 3.5rem) 0 4rem; }
.status-card {
  background: var(--card); border-radius: 22px; box-shadow: var(--shadow-pop);
  padding: clamp(1.6rem, 5vw, 2.6rem); text-align: center;
}
.status-icon { width: 84px; height: 84px; margin: 0 auto 1.1rem; }
.status-icon svg { width: 100%; height: 100%; }
.status-icon-success { color: var(--success); }
.status-icon-neutral { color: var(--brand); }
.tick-circle {
  stroke-dasharray: 160; stroke-dashoffset: 160;
  animation: draw 0.7s ease-out 0.1s forwards;
}
.tick-path {
  stroke-dasharray: 40; stroke-dashoffset: 40;
  animation: draw 0.45s ease-out 0.7s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.status-eyebrow {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 0.4rem;
}
.status-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2rem, 6vw, 3rem); color: var(--navy-900); margin-bottom: 0.4rem;
}
.status-sub { color: var(--muted); margin-bottom: 1.2rem; }
.paid-chip {
  display: inline-block; background: #e8f6ee; color: var(--success);
  border: 1.5px solid #bfe5cf; border-radius: 999px; padding: 0.45rem 1.1rem;
  font-weight: 700; font-size: 0.92rem; margin-bottom: 1.4rem;
}
.paid-chip-pending { background: #fff4d6; color: #8a6d1a; border-color: #e5c86a; }
.paid-chip-due { background: var(--cyan-soft); color: var(--navy-800); border-color: var(--cyan); }
.receipt-lines {
  text-align: left; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 0.6rem 1.2rem; margin-bottom: 1.4rem; background: var(--paper);
}
.receipt-line {
  display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line); font-size: 0.97rem;
}
.receipt-line:last-child { border-bottom: 0; }
.receipt-line dt { font-weight: 600; }
.receipt-note { color: var(--muted); font-weight: 400; font-size: 0.85rem; }
.receipt-line dd { font-weight: 700; white-space: nowrap; }
.receipt-total { border-top: 2px solid var(--navy-900); margin-top: 0.2rem; }
.receipt-total dd { font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; color: var(--brand); }
.receipt-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem 1.2rem;
  text-align: left; margin-bottom: 1.6rem;
}
.receipt-facts dt {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted);
}
.receipt-facts dd { font-weight: 600; }
.next-steps { text-align: left; margin-bottom: 1.6rem; }
.next-steps h2 {
  font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--brand); margin-bottom: 0.7rem;
}
.next-steps li {
  position: relative; padding: 0.3rem 0 0.3rem 1.6rem; color: var(--ink); font-size: 0.96rem;
}
.next-steps li::before {
  content: ''; position: absolute; left: 0; top: 0.75em; width: 12px; height: 12px;
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  background: var(--cyan-soft); border: 1.5px solid var(--brand);
}
.status-actions { display: grid; gap: 0.8rem; margin-bottom: 1.2rem; }
.save-link { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .pkg-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .how-steps { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .choice-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-legal { flex-direction: column; gap: 0.3rem; }
  .hero-cta .btn { width: 100%; }
  .btn-next { min-width: 0; flex: 1; }
  .pkg-pick-top { flex-direction: column; gap: 0.15rem; }
  .totalbar-title { max-width: 48vw; }
}

/* ==========================================================================
   Reduced motion — kill all animation
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .bubbles { display: none; }
  .ig-track { animation: none; }
  .tick-circle, .tick-path { stroke-dashoffset: 0; animation: none; }
}
