/* ============================================================
   DH BLACK CAR CORP — Premium Design System v3.0
   Fully Responsive · Mobile-First · GoCity-Inspired
   ============================================================ */

/* ── 1. CSS VARIABLES ──────────────────────────────────────── */
:root {
  /* Brand Colors */
  --navy:          #0B1944;
  --navy-dark:     #060d2a;
  --navy-mid:      #102260;
  --navy-light:    #1a3080;
  --gold:          #A48111;
  --gold-light:    #c9a427;
  --gold-pale:     #f5e9c0;
  --gold-dim:      #f0dfa0;
  --white:         #ffffff;
  --off-white:     #F9F8F5;
  --light-gray:    #F1F0ED;
  --mid-gray:      #E0DDD8;
  --dark-gray:     #9CA3AF;
  --text-dark:     #111827;
  --text-body:     #374151;
  --text-muted:    #6B7280;
  --text-light:    #9CA3AF;

  /* Category Colors */
  --cat-aeropuerto:  #1e40af;
  --cat-tour:        #065f46;
  --cat-crucero:     #0e7490;
  --cat-evento:      #6d28d9;
  --cat-interurbano: #9a3412;
  --cat-corporativo: #1f2937;

  /* Typography */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  5rem;
  --space-4xl:  7rem;

  /* Radius */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs:   0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:   0 1px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.14), 0 8px 24px rgba(0,0,0,.08);
  --shadow-card: 0 2px 12px rgba(11,25,68,.06), 0 1px 4px rgba(11,25,68,.03);
  --shadow-hover:0 12px 40px rgba(11,25,68,.13), 0 4px 14px rgba(11,25,68,.07);
  --shadow-gold: 0 4px 20px rgba(164,129,17,.30);
  --shadow-navy: 0 4px 20px rgba(11,25,68,.30);

  /* Transitions */
  --ease-out:    cubic-bezier(0,.6,.35,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-slow:   400ms ease;
  --t-spring: 380ms cubic-bezier(.34,1.56,.64,1);

  /* Layout */
  --container-max: 1200px;
  --navbar-h:      72px;
}

/* ── 2. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }
fieldset { border: none; }

/* ── 3. TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.15;
  color: var(--navy);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.text-gold    { color: var(--gold); }
.text-gold-l  { color: var(--gold-light); }
.text-white   { color: var(--white); }
.text-navy    { color: var(--navy); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.font-serif   { font-family: var(--font-serif); }
.font-sans    { font-family: var(--font-sans); }

/* ── 4. UTILITIES ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--space-3xl) 0; }
.section--light { background: var(--off-white); }
.section--dark  { background: var(--navy); }
.section--gray  { background: var(--light-gray); }

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(164,129,17,.25);
  padding: .3rem .95rem;
  border-radius: var(--radius-full);
  margin-bottom: .85rem;
}

.section__badge--light {
  color: var(--gold-light);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
}
.section__badge--gold {
  color: var(--navy);
  background: var(--gold);
  border-color: transparent;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .75rem;
}

.section__desc {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
}

.section__cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

.hidden     { display: none !important; }
.sr-only    { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── 5. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .03em;
  padding: .68rem 1.6rem;
  border-radius: var(--radius-full);
  transition: transform var(--t-spring), box-shadow var(--t-base), background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn:active::after { opacity: 1; }

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-navy);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--mid-gray);
}
.btn--outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--gold-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn--whatsapp:hover {
  background: #1db954;
  border-color: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
  padding-left: .5rem;
  padding-right: .5rem;
}
.btn--ghost:hover { color: var(--navy); }

/* Sizes */
.btn--xs  { font-size: .72rem; padding: .38rem .85rem; }
.btn--sm  { font-size: .8rem;  padding: .55rem 1.1rem; }
.btn--lg  { font-size: .95rem; padding: .88rem 2.1rem; }
.btn--xl  { font-size: 1rem;   padding: 1.05rem 2.5rem; }
.btn--block { width: 100%; }

/* ── 6. PAGE LOADER ─────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .6s ease, visibility .6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo { text-align: center; }

.loader-logo .logo__dh {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .06em;
  display: block;
  margin-bottom: .5rem;
  animation: loaderPulse 1.6s ease infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .65; }
}

.loader-bar {
  width: 140px;
  height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  margin: 1rem auto 0;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: loaderFill 1.4s ease-in-out forwards;
}

@keyframes loaderFill {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── 7. NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: transparent;
  transition: background var(--t-slow), box-shadow var(--t-slow), backdrop-filter var(--t-slow);
}

.navbar.scrolled {
  background: rgba(6,13,42,.96);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--t-fast);
}
.navbar__logo:hover { opacity: .85; }

/* Logo image (uploaded via admin) */
.navbar__logo-img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 768px) {
  .navbar__logo-img { height: 34px; max-width: 140px; }
}

.logo__dh {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
  line-height: 1;
}

.logo__black {
  font-size: .68rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1;
}

.logo__corp {
  font-size: .6rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: .13em;
  text-transform: uppercase;
  line-height: 1;
}

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: .15rem;
  margin-left: auto;
}

.nav__link {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  padding: .42rem .8rem;
  border-radius: var(--radius-full);
  transition: all var(--t-fast);
  letter-spacing: .025em;
  white-space: nowrap;
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,.11);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* City badge */
.navbar__city {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  padding: .3rem .8rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

/* WhatsApp */
.navbar__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: var(--white);
  transition: all var(--t-spring);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37,211,102,.3);
}
.navbar__whatsapp:hover {
  background: #1db954;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 16px rgba(37,211,102,.5);
}

/* CTA */
.navbar__cta {
  background: var(--gold);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: .48rem 1.2rem;
  border-radius: var(--radius-full);
  transition: all var(--t-spring);
  flex-shrink: 0;
  letter-spacing: .03em;
  box-shadow: var(--shadow-gold);
}
.navbar__cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(164,129,17,.45);
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  border-radius: var(--radius-sm);
  margin-left: auto;
  flex-shrink: 0;
}
.navbar__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-base);
  transform-origin: center;
}

/* ── 8. HERO SECTION ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Slider */
.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1.04);
  overflow: hidden;
}

.hero__slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.4s ease, transform 8s ease;
}

/* img tag support — allows animated GIFs to play */
.hero__slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

/* Video MP4 background — same treatment as image */
.hero__slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  /* Respect user preference: reduce motion = pause video */
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide-video { display: none; }
  /* Fallback poster shown via <video poster="..."> — already handled by browser */
}

.hero__fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}

/* Deep gradient overlay — more dramatic */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,13,42,.55) 0%, rgba(6,13,42,.25) 35%, rgba(6,13,42,.5) 75%, rgba(6,13,42,.85) 100%),
    linear-gradient(90deg, rgba(6,13,42,.6) 0%, transparent 60%);
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--navbar-h) + 3.5rem);
  padding-bottom: 9rem;
  max-width: 760px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(164,129,17,.16);
  border: 1px solid rgba(164,129,17,.4);
  padding: .38rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.35rem;
}

.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.35rem;
  letter-spacing: -.02em;
}

.hero__title .text-gold {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, #e8c04a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(.88rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  margin-bottom: 2.25rem;
  font-weight: 400;
  max-width: 560px;
}

/* Service chips */
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}

.hero__chip {
  font-size: .73rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  padding: .36rem .9rem;
  border-radius: var(--radius-full);
  transition: all var(--t-spring);
  cursor: pointer;
  letter-spacing: .025em;
}

.hero__chip:hover,
.hero__chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Quote bar */
.hero__quote-bar {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,.22), 0 8px 20px rgba(0,0,0,.14);
  overflow: hidden;
  max-width: 700px;
  margin-bottom: 2.25rem;
  border: 1px solid rgba(255,255,255,.1);
}

.hero__quote-field {
  flex: 1;
  min-width: 0;
  padding: .8rem 1.1rem;
  border-right: 1px solid var(--mid-gray);
  display: flex;
  flex-direction: column;
  gap: .18rem;
  transition: background var(--t-fast);
}
.hero__quote-field:hover { background: var(--off-white); }
.hero__quote-field:last-of-type { border-right: none; }

.hero__quote-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__quote-field select,
.hero__quote-field input {
  background: transparent;
  border: none;
  outline: none;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0;
  width: 100%;
  -webkit-appearance: none;
  cursor: pointer;
}
.hero__quote-field select option { color: var(--navy); }

/* Passenger counter */
.hero__quote-passengers {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.hero__quote-passengers span {
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  min-width: 1.6rem;
  text-align: center;
}

.hero__quote-passengers button {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-spring);
  flex-shrink: 0;
  line-height: 1;
}
.hero__quote-passengers button:hover {
  background: var(--gold-pale);
  color: var(--gold);
  transform: scale(1.15);
}

/* Quote CTA button */
.hero__quote-btn {
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
  padding: 0 1.9rem;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background var(--t-fast);
  display: flex;
  align-items: center;
  gap: .45rem;
  text-decoration: none;
  text-transform: uppercase;
}
.hero__quote-btn:hover { background: var(--gold-light); }

/* Trust pills */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  position: absolute;
  bottom: 2.75rem;
  left: 0; right: 0;
  padding: 0 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  z-index: 2;
}

.hero__trust-pill {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16);
  padding: .42rem 1rem;
  border-radius: var(--radius-full);
  transition: background var(--t-fast);
}
.hero__trust-pill:hover { background: rgba(255,255,255,.16); }
.hero__trust-pill svg { color: var(--gold-light); flex-shrink: 0; }

/* Slider nav arrows */
.hero__nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-spring);
  border: 1px solid rgba(255,255,255,.18);
}
.hero__nav:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-50%) scale(1.08);
}
.hero__nav--prev { left: 1.75rem; }
.hero__nav--next { right: 1.75rem; }

/* Dots */
.hero__dots {
  position: absolute;
  bottom: 1.25rem;
  right: 1.75rem;
  z-index: 3;
  display: flex;
  gap: .5rem;
  align-items: center;
}

.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.32);
  transition: all var(--t-spring);
  border: none;
  cursor: pointer;
}
.hero__dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 4px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.45);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.scroll__indicator {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,.45), transparent);
  animation: scrollFloat 2s ease infinite;
}

@keyframes scrollFloat {
  0%   { opacity: .8; transform: scaleY(1); }
  50%  { opacity: .3; transform: scaleY(.6); }
  100% { opacity: .8; transform: scaleY(1); }
}

/* ── 9. HOW IT WORKS ────────────────────────────────────────── */
.how-it-works {
  background: var(--off-white);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

/* Dashed connector line */
.steps__grid::before {
  content: '';
  position: absolute;
  top: 2.65rem;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold-pale) 0, var(--gold-pale) 10px,
    transparent 10px, transparent 20px
  );
  z-index: 0;
}

.step__card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1.25rem;
  transition: transform var(--t-spring);
}
.step__card:hover { transform: translateY(-4px); }

.step__number {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.35rem;
  box-shadow: var(--shadow-gold);
  position: relative;
}

.step__number::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(164,129,17,.25);
}

.step__icon {
  position: absolute;
  bottom: -6px; right: -6px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .55rem;
  font-family: var(--font-sans);
}

.step__desc {
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── 10. CATEGORY FILTER TABS ───────────────────────────────── */
.category-tabs-wrap {
  position: sticky;
  top: var(--navbar-h);
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow var(--t-base);
  border-bottom: 1px solid var(--light-gray);
}

.category-tabs-wrap.sticky-tabs--floating {
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}

.category-tabs {
  display: flex;
  gap: .45rem;
  overflow-x: auto;
  padding: .9rem 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.category-tabs::-webkit-scrollbar { display: none; }

.category-tab {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--light-gray);
  border: 1.5px solid transparent;
  padding: .5rem 1rem;
  border-radius: var(--radius-full);
  transition: all var(--t-spring);
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  letter-spacing: .02em;
}

.category-tab:hover {
  background: var(--gold-pale);
  color: var(--gold);
  border-color: rgba(164,129,17,.25);
  transform: translateY(-1px);
}

.category-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-navy);
}

.tab-count {
  font-size: .68rem;
  font-weight: 700;
  background: rgba(255,255,255,.2);
  padding: .1rem .45rem;
  border-radius: var(--radius-full);
  min-width: 1.4rem;
  text-align: center;
}
.category-tab:not(.active) .tab-count {
  background: rgba(0,0,0,.07);
  color: var(--text-muted);
}

/* ── 11. PLAN CARDS v3 ──────────────────────────────────────── */
.plans-count {
  font-size: .83rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding: 0 .25rem;
}
.plans-count strong { color: var(--navy); font-weight: 700; }

.plans-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.plan-card-v3 {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-spring), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,.04);
}

.plan-card-v3:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Image area */
.plan-card-v3__img {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  flex-shrink: 0;
}

.plan-card-v3__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

.plan-card-v3:hover .plan-card-v3__img img { transform: scale(1.08); }

.plan-card-v3__img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
}

/* Subtle gradient at bottom of image */
.plan-card-v3__img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(6,13,42,.5), transparent);
  pointer-events: none;
  z-index: 1;
}

/* Overlay badges */
.plan-card-v3__badges {
  position: absolute;
  top: .8rem; left: .8rem;
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  z-index: 2;
}

.plan-cat-badge {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--white);
  padding: .25rem .7rem;
  border-radius: var(--radius-full);
  background: rgba(11,25,68,.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.1);
}

.plan-cat-badge--aeropuerto  { background: rgba(30,64,175,.88); }
.plan-cat-badge--tour        { background: rgba(6,95,70,.88); }
.plan-cat-badge--crucero     { background: rgba(14,116,144,.88); }
.plan-cat-badge--evento      { background: rgba(109,40,217,.88); }
.plan-cat-badge--interurbano { background: rgba(154,52,18,.88); }
.plan-cat-badge--corporativo { background: rgba(31,41,55,.92); }

.plan-popular-badge {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--navy-dark);
  background: var(--gold);
  padding: .25rem .7rem;
  border-radius: var(--radius-full);
}

/* Price badge bottom-right */
.plan-price-badge {
  position: absolute;
  bottom: .85rem; right: .85rem;
  background: rgba(6,13,42,.88);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: .4rem .8rem;
  border-radius: var(--radius-md);
  text-align: right;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.1);
}

.plan-price-badge__from {
  display: block;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  line-height: 1;
  margin-bottom: .12rem;
}

.plan-price-badge__amount {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

/* Card body */
.plan-card-v3__body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .1rem;
}

.plan-card-v3__title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
  line-height: 1.22;
}

.plan-card-v3__desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: .85rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Includes */
.plan-card-v3__includes {
  list-style: none;
  margin-bottom: .9rem;
  display: flex;
  flex-direction: column;
  gap: .32rem;
}

.plan-card-v3__includes li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .79rem;
  color: var(--text-body);
}

.plan-card-v3__includes li::before {
  content: '';
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--gold-pale);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 20 20' fill='%23A48111' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Detail pills */
.plan-card-v3__pills {
  display: flex;
  flex-wrap: wrap;
  gap: .38rem;
  margin-bottom: .9rem;
}

.plan-detail-pill {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--light-gray);
  padding: .25rem .7rem;
  border-radius: var(--radius-full);
}

/* Route */
.plan-card-v3__route {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  font-size: .77rem;
  color: var(--text-muted);
  margin-bottom: .8rem;
  line-height: 1.4;
}

/* Card footer */
.plan-card-v3__footer {
  display: flex;
  gap: .65rem;
  align-items: center;
  margin-top: auto;
  padding-top: .85rem;
  border-top: 1px solid var(--light-gray);
}

.plan-card-v3__view {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--t-fast);
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .25rem;
}
.plan-card-v3__view:hover { color: var(--navy); }

/* Empty state */
.plans-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4.5rem 2rem;
  color: var(--text-muted);
}
.plans-no-results svg { margin: 0 auto 1rem; opacity: .3; }
.plans-no-results h3  { font-size: 1.2rem; margin-bottom: .5rem; font-family: var(--font-sans); }

/* ── 12. POPULAR / FEATURED CARDS ───────────────────────────── */
.popular-section { padding: var(--space-3xl) 0; background: var(--white); }

.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.popular-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--navy);
  transition: transform var(--t-spring), box-shadow var(--t-base);
  cursor: pointer;
}
.popular-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.popular-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s ease;
  background-color: var(--navy-mid);
}
.popular-card:hover .popular-card__bg { transform: scale(1.07); }

.popular-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,13,42,.95) 0%, rgba(11,25,68,.45) 55%, transparent 100%);
}

.popular-card__body {
  position: relative;
  z-index: 2;
  padding: 1.6rem;
}

.popular-card__badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy-dark);
  background: var(--gold);
  padding: .22rem .7rem;
  border-radius: var(--radius-full);
  margin-bottom: .65rem;
}

.popular-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
  line-height: 1.2;
}

.popular-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  font-family: var(--font-serif);
  margin-bottom: 1rem;
}
.popular-card__price small {
  font-size: .7rem;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  font-family: var(--font-sans);
}

/* ── 13. SPECIALS / SERVICE CARDS ───────────────────────────── */
.specials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.special__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-spring), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--mid-gray);
}
.special__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.special__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--t-base);
}
.special__card:hover::before { opacity: 1; }

.special__card--featured {
  background: var(--navy);
  border-color: transparent;
}
.special__card--featured::before {
  opacity: 1;
}
.special__card--featured h3,
.special__card--featured p { color: var(--white); }

.special__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy-dark);
  background: var(--gold);
  padding: .25rem .7rem;
  border-radius: var(--radius-full);
}

.special__icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.35rem;
  transition: transform var(--t-spring);
}
.special__card:hover .special__icon { transform: scale(1.1) rotate(5deg); }

.special__icon--gold { background: var(--gold-pale); color: var(--gold); }
.special__icon--dark { background: rgba(255,255,255,.08); color: var(--gold); }
.special__icon--blue { background: rgba(30,64,175,.08); color: var(--cat-aeropuerto); }

.special__card h3 {
  font-size: 1.08rem;
  margin-bottom: .5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--navy);
}
.special__card p {
  font-size: .84rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.special__price {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}
.special__card--featured .special__price { color: rgba(255,255,255,.65); }
.special__price strong { color: var(--gold); font-size: 1.35rem; font-family: var(--font-serif); }

/* ── 14. WHY CHOOSE US ──────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  text-align: center;
  padding: 2.25rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-spring), box-shadow var(--t-base);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-pale);
}

.why-card__icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.15rem;
  transition: transform var(--t-spring), background var(--t-base);
}
.why-card:hover .why-card__icon {
  transform: scale(1.12) rotate(-5deg);
  background: var(--gold);
  color: var(--white);
}

.why-card__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .45rem;
  font-family: var(--font-sans);
}
.why-card__desc {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Stats counter */
.stat__num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: .3rem;
}

/* ── 15. TESTIMONIALS ───────────────────────────────────────── */
.testimonials__carousel {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}

.testimonial__card {
  min-width: calc(100% / 3);
  padding: 0 .75rem;
  flex-shrink: 0;
}

.testimonial__inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--mid-gray);
  transition: transform var(--t-spring), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
}
.testimonial__inner:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-pale);
}

/* Big quote mark */
.testimonial__inner::before {
  content: '\201C';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-pale);
  line-height: 1;
  font-weight: 700;
  pointer-events: none;
}

.testimonial__stars {
  display: flex;
  gap: .2rem;
  margin-bottom: .9rem;
  padding-top: .5rem;
}

.testimonial__text {
  font-style: italic;
  color: var(--text-body);
  line-height: 1.75;
  font-size: .9rem;
  flex: 1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding-top: .9rem;
  border-top: 1px solid var(--light-gray);
}

.author__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold-pale);
}

.author__avatar--initial {
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-pale);
}

.testimonial__author strong {
  display: block;
  font-size: .88rem;
  color: var(--navy);
  font-weight: 700;
}
.testimonial__author span {
  font-size: .75rem;
  color: var(--text-muted);
}

/* Controls */
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.25rem;
}

.carousel__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--mid-gray);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-spring);
}
.carousel__btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: scale(1.08);
}

.carousel__dots { display: flex; gap: .4rem; align-items: center; }

.carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mid-gray);
  transition: all var(--t-spring);
  cursor: pointer;
  border: none;
}
.carousel__dot.active {
  background: var(--navy);
  width: 22px;
  border-radius: 4px;
}

/* ── 16. FAQ ACCORDION ──────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1.5px solid var(--mid-gray);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq-item:hover { border-color: var(--gold-pale); }
.faq-item.faq-item--open {
  border-color: rgba(164,129,17,.45);
  box-shadow: 0 4px 20px rgba(164,129,17,.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  user-select: none;
  background: transparent;
  width: 100%;
  text-align: left;
}

.faq-question h4 {
  font-size: .93rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-sans);
  line-height: 1.4;
  transition: color var(--t-fast);
}
.faq-item.faq-item--open .faq-question h4 { color: var(--gold); }

.faq-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-base);
}
.faq-chevron svg { transition: transform var(--t-base); }

.faq-item.faq-item--open .faq-chevron {
  background: var(--gold);
  color: var(--white);
}
.faq-item.faq-item--open .faq-chevron svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(.4,0,.2,1), padding .38s ease;
  padding: 0 1.5rem;
}
.faq-item.faq-item--open .faq-answer {
  max-height: 600px;
  padding-bottom: 1.35rem;
}

.faq-answer p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.78;
  border-top: 1px solid var(--light-gray);
  padding-top: 1rem;
  margin: 0;
}

/* ── 17. CTA BANNER ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative orbs */
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%; left: -15%;
  width: 55%; padding-top: 55%;
  background: radial-gradient(circle, rgba(164,129,17,.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -15%;
  width: 55%; padding-top: 55%;
  background: radial-gradient(circle, rgba(164,129,17,.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta__content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
}

.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .85rem;
}
.cta__title .text-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta__desc {
  color: rgba(255,255,255,.68);
  font-size: .95rem;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
}

/* ── 18. FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.65);
  padding-top: 4.5rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem 3.5rem;
}

.footer__logo {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  margin-bottom: .9rem;
}

.footer__tagline {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.footer__social { display: flex; gap: .6rem; }

.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-spring);
}
.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: scale(1.1) translateY(-2px);
}

.footer__title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
}

.footer__col a,
.footer__col span {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.48);
  margin-bottom: .6rem;
  transition: color var(--t-fast), padding-left var(--t-fast);
  line-height: 1.4;
}
.footer__col a:hover {
  color: var(--gold-light);
  padding-left: .3rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer__bottom p {
  font-size: .76rem;
  color: rgba(255,255,255,.3);
  margin: 0;
}

/* ── 19. PAGE HEROES (sub-pages) ────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--navbar-h) + 3.5rem) 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(164,129,17,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.02) 0%, transparent 50%);
}

.page-hero__content { position: relative; z-index: 1; }

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}

.page-hero__subtitle {
  color: rgba(255,255,255,.62);
  font-size: .95rem;
  line-height: 1.75;
  max-width: 560px;
}

/* Plans hero */
.plans-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  padding: calc(var(--navbar-h) + 3rem) 0 3rem;
  position: relative;
  overflow: hidden;
}
.plans-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(164,129,17,.12) 0%, transparent 70%);
  pointer-events: none;
}
.plans-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}

.plans-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
  position: relative;
  z-index: 1;
}

.plans-hero__subtitle {
  color: rgba(255,255,255,.62);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.plans-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  position: relative;
  z-index: 1;
}

.plans-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .73rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.15);
  padding: .38rem .95rem;
  border-radius: var(--radius-full);
  transition: background var(--t-fast);
}
.plans-trust-item:hover { background: rgba(255,255,255,.16); }

/* ── 20. DETAIL PAGE ────────────────────────────────────────── */
.detail__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
  padding: 2rem 0;
}

.detail-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.detail-gallery__main {
  height: 440px;
  background: var(--light-gray);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.detail-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.detail-gallery__main:hover img { transform: scale(1.03); }

.detail-gallery__main-img { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

.detail-gallery__zoom {
  position: absolute;
  bottom: 1rem; right: 1rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
  border: 1px solid rgba(255,255,255,.2);
}
.detail-gallery__zoom:hover { background: rgba(255,255,255,.25); }

.detail-gallery__nav {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  padding: .4rem .9rem;
  border-radius: var(--radius-full);
}

.detail-gallery__nav-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}
.detail-gallery__nav-btn:hover { background: rgba(255,255,255,.3); }

.detail-gallery__counter {
  font-size: .75rem;
  font-weight: 600;
  color: var(--white);
  min-width: 3rem;
  text-align: center;
}

/* Thumbnails */
.detail-gallery__thumbs {
  display: flex;
  gap: .5rem;
  padding: .5rem;
  background: var(--light-gray);
  overflow-x: auto;
  scrollbar-width: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.detail-gallery__thumbs::-webkit-scrollbar { display: none; }

.detail-gallery__thumb {
  width: 80px; height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  opacity: .65;
  transition: opacity var(--t-fast), transform var(--t-spring);
  border: 2px solid transparent;
}
.detail-gallery__thumb.active,
.detail-gallery__thumb:hover {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(1.03);
}
.detail-gallery__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Booking widget */
.booking-widget {
  background: var(--white);
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--navbar-h) + 1.25rem);
  box-shadow: var(--shadow-lg);
}

.booking-widget__header {
  background: var(--navy);
  padding: 1.5rem 1.75rem;
}

.booking-widget__from {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: .3rem;
}

/* ── Booking widget: price block ─────────────────────── */
.booking-widget__price {
  padding: 1.25rem 1.5rem 1rem;
  background: var(--navy);
  border-bottom: 1px solid rgba(164,129,17,.2);
}

.booking-price-main {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  flex-wrap: wrap;
}

.booking-price-from {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  line-height: 1;
  display: block;
  margin-bottom: .25rem;
  width: 100%;
}

.booking-price-amount {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.booking-price-currency {
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: .06em;
  align-self: flex-end;
  padding-bottom: .2rem;
}

.booking-price-member {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: .55rem;
  padding: .45rem .75rem;
  background: rgba(164,129,17,.18);
  border: 1px solid rgba(164,129,17,.3);
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-light);
  width: fit-content;
}
.booking-price-member svg { flex-shrink: 0; color: var(--gold-light); }

/* ── Booking widget: body + specs ────────────────────── */
.booking-widget__body { padding: 1.25rem 1.5rem; }

.booking-widget__specs {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  padding: 1rem 1.5rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--mid-gray);
}

.booking-spec {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-body);
}
.booking-spec svg { color: var(--gold); flex-shrink: 0; }

/* ── Booking widget: CTAs ────────────────────────────── */
.booking-widget__ctas {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  border-bottom: 1px solid var(--mid-gray);
}

/* ── Booking widget: trust badges ────────────────────── */
.booking-widget__trust {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  border-bottom: 1px solid var(--mid-gray);
}

.booking-trust-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-body);
}
.booking-trust-row svg { flex-shrink: 0; }

/* ── Booking widget: share ───────────────────────────── */
.booking-widget__share {
  padding: .85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}

.booking-widget__share > span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.share-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--mid-gray);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .18s;
  text-decoration: none;
  color: var(--text-body);
}
.share-btn:hover { border-color: var(--gold); color: var(--gold); transform: scale(1.08); }
.share-btn--wa   { background: #25d366; border-color: #25d366; color: #fff; }
.share-btn--wa:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff; }

/* Detail meta pills */
.detail-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.25rem 0;
}

.detail-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-body);
  background: var(--light-gray);
  padding: .4rem .9rem;
  border-radius: var(--radius-full);
}

.detail-meta-pill svg { color: var(--gold); flex-shrink: 0; }

/* Description */
.detail-description { margin: 1.75rem 0; }
.detail-description__title {
  font-size: 1.25rem;
  margin-bottom: .85rem;
}
.detail-description__text {
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* Includes grid */
.detail-includes { margin: 1.75rem 0; }
.detail-includes__title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.detail-includes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.detail-include-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.detail-include-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-include-item strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .15rem;
}
.detail-include-item span {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
}

/* Breadcrumb */
.breadcrumb-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--mid-gray);
  padding: .75rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--gold); }

/* Plan hero */
.plan-hero {
  height: 420px;
  position: relative;
  overflow: hidden;
}

.plan-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.plan-hero:hover .plan-hero__bg { transform: scale(1.03); }

.plan-hero__bg--fallback {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.plan-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,13,42,.3) 0%, rgba(6,13,42,.8) 100%);
}

.plan-hero__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
}

.plan-hero__cat {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy-dark);
  background: var(--gold);
  padding: .25rem .8rem;
  border-radius: var(--radius-full);
  margin-bottom: .75rem;
}

.plan-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .4rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.plan-hero__route {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}

/* Related plans */
.plans-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.plan-card-v2 {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--mid-gray);
  transition: transform var(--t-spring), box-shadow var(--t-base);
}
.plan-card-v2:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.plan-card-v2__img {
  height: 160px;
  overflow: hidden;
  background: var(--navy);
  position: relative;
}
.plan-card-v2__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.plan-card-v2:hover .plan-card-v2__img img { transform: scale(1.06); }

.plan-card-v2__img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
}

.plan-card-v2__body { padding: 1rem; }
.plan-card-v2__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem;
}
.plan-card-v2__desc {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.plan-card-v2__footer {
  display: flex;
  gap: .5rem;
  align-items: center;
  padding-top: .65rem;
  border-top: 1px solid var(--light-gray);
}
.plan-card-v2__view {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: auto;
  transition: color var(--t-fast);
}
.plan-card-v2__view:hover { color: var(--navy); }

/* ── 21. ROUTES PAGE ────────────────────────────────────────── */
.routes-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  padding: calc(var(--navbar-h) + 2.5rem) 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.routes-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(164,129,17,.1) 0%, transparent 70%);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.route-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--mid-gray);
  transition: all var(--t-spring);
  position: relative;
  overflow: hidden;
}
.route-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.route-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--t-base);
}
.route-card:hover::before { opacity: 1; }

.route-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--light-gray);
}

.route-card__type-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: .22rem .7rem;
  border-radius: var(--radius-full);
}

.route-card__price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.route-card__path {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .85rem;
}

.route-point {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}
.route-point--dest { text-align: right; }

.route-arrow {
  display: flex;
  align-items: center;
  gap: .2rem;
  color: var(--text-light);
  flex-shrink: 0;
}
.route-arrow::before,
.route-arrow::after {
  content: '';
  height: 1px;
  width: 14px;
  background: var(--mid-gray);
}

.route-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.route-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--light-gray);
  padding: .22rem .65rem;
  border-radius: var(--radius-full);
}

/* ── 22. QUOTE / WIZARD ─────────────────────────────────────── */
.quote-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: calc(var(--navbar-h) + 2rem) 0 2rem;
  text-align: center;
  position: relative;
}
.quote-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--off-white));
}

.wizard-bar {
  position: sticky;
  top: var(--navbar-h);
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--mid-gray);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.wizard-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: .9rem 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.wizard-step {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color var(--t-base);
}

.wizard-step:not(:last-child)::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--mid-gray);
  margin: 0 .6rem;
}

.wizard-step__num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all var(--t-base);
}

.wizard-step.active .wizard-step__num {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.wizard-step.active { color: var(--navy); }

.wizard-step.done .wizard-step__num {
  background: var(--navy);
  color: var(--white);
}
.wizard-step.done { color: var(--navy); }

/* ── 23. LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
}
.lightbox.active { opacity: 1; visibility: visible; }

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
  transition: opacity var(--t-base);
}

.lightbox__close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
  z-index: 2;
}
.lightbox__close:hover { background: rgba(255,255,255,.22); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-spring);
  z-index: 2;
}
.lightbox__nav:hover { background: rgba(255,255,255,.22); transform: translateY(-50%) scale(1.08); }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

.lightbox__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 95vw;
}

.lightbox__caption {
  margin-top: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}

.lightbox__dots {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-top: .75rem;
}

.lightbox__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast);
}
.lightbox__dot.active { background: var(--gold); }

/* ── 24. ALERTS ─────────────────────────────────────────────── */
.alert {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: .95rem 1.3rem;
  border-radius: var(--radius-md);
  font-size: .86rem;
  font-weight: 500;
  margin-bottom: .65rem;
  border: 1px solid transparent;
  line-height: 1.5;
}

.alert--success { background: #f0fdf4; border-color: #86efac; color: #15803d; }
.alert--error   { background: #fef2f2; border-color: #fca5a5; color: #dc2626; }
.alert--warning { background: #fffbeb; border-color: #fcd34d; color: #b45309; }
.alert--info    { background: #eff6ff; border-color: #93c5fd; color: #1d4ed8; }

.alert__close { font-size: 1.2rem; line-height: 1; color: currentColor; opacity: .55; flex-shrink: 0; cursor: pointer; }

/* ── 25. PLANS BOTTOM CTA STRIP ─────────────────────────────── */
.plans-cta-strip {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 2.75rem 0;
  position: relative;
  overflow: hidden;
}
.plans-cta-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.plans-cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.plans-cta-text h2 { font-size: 1.35rem; color: var(--white); margin-bottom: .3rem; }
.plans-cta-text p  { font-size: .86rem; color: rgba(255,255,255,.55); margin: 0; }

/* ── 26. BENEFITS GRID ──────────────────────────────────────── */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--mid-gray);
  transition: transform var(--t-spring), box-shadow var(--t-base), border-color var(--t-base);
}
.benefit__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-pale);
}

.benefit__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
}

.benefit__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .45rem;
  font-family: var(--font-sans);
}
.benefit__card p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── 27. STAT NUMBERS ───────────────────────────────────────── */
.stat__num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: .3rem;
}

/* ── 28. LAZY IMG & ERROR ───────────────────────────────────── */
.lazy-img {
  opacity: 0;
  transition: opacity .5s ease;
}
.lazy-img.loaded { opacity: 1; }
img.img-error { display: none !important; }

.plan-card-v3__img.img-error,
.plan-card-v2__img.img-error {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.plan-card-v3__img.img-error::after { display: none; }

/* ── 29. ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}

.animate-fade-up    { animation: fadeUp .65s cubic-bezier(.16,1,.3,1) both; animation-play-state: paused; }
.animate-fade-right { animation: fadeRight .65s cubic-bezier(.16,1,.3,1) both; animation-play-state: paused; }
.animate-fade-left  { animation: fadeLeft .65s cubic-bezier(.16,1,.3,1) both; animation-play-state: paused; }
.animate-scale      { animation: scaleIn .5s cubic-bezier(.16,1,.3,1) both; animation-play-state: paused; }
.reveal             { animation: fadeUp .65s cubic-bezier(.16,1,.3,1) both; animation-play-state: paused; }

.animate-fade-up.visible,
.animate-fade-right.visible,
.animate-fade-left.visible,
.animate-scale.visible,
.reveal.visible {
  animation-play-state: running;
}

/* ── 30. FLEET SECTION ──────────────────────────────────────── */
.fleet {
  background: var(--navy);
  padding: var(--space-3xl) 0;
}
.fleet__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.fleet__text .section__title { color: var(--white); }
.fleet__desc {
  color: rgba(255,255,255,.68);
  font-size: .95rem;
  line-height: 1.78;
  margin-bottom: 1.5rem;
}
.fleet__features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.fleet__features li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .88rem;
  color: rgba(255,255,255,.78);
}
.fleet__features li svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   RESPONSIVE — MOBILE-FIRST
   ============================================================ */

/* ── 31. 1200px ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .plans-grid-v3    { grid-template-columns: repeat(2, 1fr); }
  .popular-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid   { grid-template-columns: repeat(3, 1fr); }
  .footer__grid     { grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2rem; }
}

/* ── 32. 1024px ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .navbar__city     { display: none; }
  .fleet__content   { grid-template-columns: 1fr; gap: 2.5rem; }
  .fleet__image     { display: none; }
  .detail__grid     { grid-template-columns: 1fr; }
  .booking-widget   { position: static; }
  .plans-grid-v3    { grid-template-columns: repeat(2, 1fr); }
  .plans-grid-v2    { grid-template-columns: repeat(2, 1fr); }
  .detail-includes__grid { grid-template-columns: 1fr; }
  .routes-grid      { grid-template-columns: repeat(2, 1fr); }
}

/* ── 33. 900px ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .specials__grid   { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .steps__grid      { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

/* ── 34. 768px — TABLET ─────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --navbar-h: 62px;
    --space-3xl: 4rem;
  }

  /* ---- Navbar mobile menu ---- */
  .navbar__nav {
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    background: rgba(6,13,42,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.75rem;
    gap: .3rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform .38s cubic-bezier(.4,0,.2,1), opacity .38s ease, visibility .38s;
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 998;
  }
  .navbar__nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .nav__link {
    padding: .85rem 1.1rem;
    border-radius: var(--radius-md);
    font-size: .9rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
    color: rgba(255,255,255,.88);
  }
  .nav__link:last-child { border-bottom: none; }
  .nav__link.active::after { display: none; }
  .nav__link:hover, .nav__link.active { background: rgba(255,255,255,.1); color: #fff; }
  .navbar__cta    { display: none; }
  .navbar__toggle { display: flex; }

  /* ---- Hero ---- */
  .hero__content   { padding-bottom: 7rem; }
  .hero__title     { font-size: clamp(2.2rem, 7vw, 3.2rem); }
  .hero__subtitle  { max-width: 100%; }
  .hero__quote-bar { flex-direction: column; }
  .hero__quote-field {
    border-right: none;
    border-bottom: 1px solid var(--mid-gray);
  }
  .hero__quote-field:last-of-type { border-bottom: none; }
  .hero__quote-btn {
    padding: 1rem;
    justify-content: center;
    font-size: .88rem;
  }
  .hero__trust {
    position: relative;
    bottom: auto;
    padding: 0;
    margin-top: 1.5rem;
    justify-content: center;
  }

  /* ---- Steps ---- */
  .steps__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .steps__grid::before { display: none; }

  /* ---- Cards ---- */
  .plans-grid-v3   { grid-template-columns: 1fr; gap: 1.25rem; }
  .popular-grid    { grid-template-columns: 1fr; gap: 1.25rem; }
  .specials__grid  { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid  { grid-template-columns: 1fr; }
  .routes-grid     { grid-template-columns: 1fr; }
  .plans-grid-v2   { grid-template-columns: 1fr; }

  /* ---- Footer ---- */
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem;
  }
  .footer__brand   { grid-column: 1 / -1; }
  .footer__bottom  { flex-direction: column; text-align: center; }

  /* ---- Testimonials ---- */
  .testimonial__card { min-width: 100%; }

  /* ---- Plans CTA ---- */
  .plans-cta-strip .container { flex-direction: column; text-align: center; }
  .plans-cta-strip .container > div { justify-content: center; }

  /* ---- Detail page ---- */
  .plan-hero  { height: 300px; }
  .detail-gallery__main { height: 280px; }
  .detail-includes__grid { grid-template-columns: 1fr; }

  /* ---- Wizard ---- */
  .wizard-step:not(:last-child)::after { width: 24px; }
  .wizard-step span:not(.wizard-step__num) {
    display: none;
  }
}

/* ── 35. 600px ──────────────────────────────────────────────── */
@media (max-width: 600px) {
  .popular-card { min-height: 290px; }
  .hero__nav    { display: none; }
  .why-grid     { grid-template-columns: 1fr; }

  .hero__badge  { font-size: .62rem; }
  .hero__chips  { gap: .35rem; }
  .hero__chip   { font-size: .68rem; padding: .32rem .8rem; }

  .plans-hero__trust {
    gap: .45rem;
  }
  .plans-trust-item {
    font-size: .68rem;
    padding: .3rem .75rem;
  }
}

/* ── 36. 480px — MOBILE ─────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --space-3xl: 3rem; }

  .container { padding: 0 1rem; }
  .section   { padding: 3rem 0; }

  h2 { font-size: 1.65rem; }

  /* Ensure tap targets are at least 44px */
  .btn          { min-height: 44px; }
  .nav__link    { min-height: 44px; }
  .carousel__btn{ width: 44px; height: 44px; }
  .hero__nav    { display: none; }

  .cta__actions { flex-direction: column; align-items: center; }
  .cta__actions .btn { width: 100%; max-width: 300px; min-height: 52px; }

  .plan-card-v3__img  { height: 210px; }
  .plan-price-badge   { padding: .35rem .65rem; }
  .plan-price-badge__amount { font-size: 1.05rem; }

  .plans-cta-strip .container > div { flex-direction: column; align-items: center; }
  .plans-cta-strip .container > div .btn { width: 100%; max-width: 280px; }

  .footer__grid       { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer__brand      { grid-column: auto; }

  .faq-question       { padding: 1rem 1.1rem; }
  .faq-question h4    { font-size: .88rem; }

  .step__number       { width: 72px; height: 72px; font-size: 1.8rem; }

  .why-grid           { grid-template-columns: 1fr; }
  .specials__grid     { grid-template-columns: 1fr; }
  .popular-grid       { grid-template-columns: 1fr; }
  .benefits__grid     { grid-template-columns: 1fr; }

  .detail-gallery__main  { height: 240px; }
  .plan-hero             { height: 250px; }

  .hero__quote-label { font-size: .58rem; }
  .hero__content     { padding-top: calc(var(--navbar-h) + 2rem); }

  .booking-widget__price { font-size: 1.9rem; }
}

/* ── 37. 360px — SMALL MOBILE ───────────────────────────────── */
@media (max-width: 360px) {
  .container { padding: 0 .85rem; }
  .hero__title { font-size: 1.9rem; }
  .navbar__whatsapp { display: none; }
  .plans-grid-v3 { gap: 1rem; }
  .plan-card-v3__img { height: 190px; }
}

/* ── 38. LANDSCAPE PHONES ───────────────────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: calc(var(--navbar-h) + 1.5rem) 0 4rem;
  }
  .hero__content { padding-top: 1rem; padding-bottom: 4rem; }
  .hero__trust   { position: relative; bottom: auto; padding: 0; margin-top: 1rem; }
}

/* ── 39. PRINT ──────────────────────────────────────────────── */
@media print {
  .navbar, .page-loader, .hero__nav, .hero__dots, .carousel__controls,
  .lightbox, .navbar__whatsapp, .navbar__cta, .hero__trust { display: none !important; }
  body { font-size: 12pt; color: #000; }
  h1, h2, h3 { color: #000; }
  .plans-grid-v3 { grid-template-columns: repeat(2, 1fr); }
}

/* ── 40. REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__slide { transition: none; }
  .page-loader.hidden { transition: none; }
}

/* ── 41. ROUTES PAGE V2 ─────────────────────────────────────── */
.routes-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  z-index: 0;
}
.routes-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at right center, rgba(164,129,17,.12) 0%, transparent 65%);
  z-index: 1;
}
.routes-hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--navbar-h) + 2.5rem);
  padding-bottom: 2.5rem;
  text-align: center;
}
.routes-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: .6rem 0 .75rem;
}
.routes-hero__subtitle {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1.75rem;
}
.routes-hero__stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.routes-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
}
.routes-stat__num {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.routes-stat__label {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* Route Cards V2 */
.routes-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.35rem;
  margin-top: 1.75rem;
}

.route-card-v2 {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--mid-gray);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .25s;
}
.route-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

/* Card header — colour by type */
.route-card-v2__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.1rem;
}
.route-card-v2__header--aeropuerto  { background: var(--cat-aeropuerto);  }
.route-card-v2__header--crucero     { background: var(--cat-crucero);     }
.route-card-v2__header--interurbano { background: var(--cat-interurbano); }
.route-card-v2__header--local       { background: var(--navy-mid);        }

.route-card-v2__type {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
}
.route-card-v2__rate {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.15);
  padding: .2rem .65rem;
  border-radius: var(--radius-full);
}
.route-card-v2__rate--fixed {
  background: rgba(255,255,255,.2);
  color: #fff;
}

/* Card body */
.route-card-v2__body {
  padding: 1.1rem 1.25rem .75rem;
  flex: 1;
}
.route-card-v2__desc {
  font-size: .8rem;
  color: var(--text-muted);
  margin: .65rem 0 .75rem;
  line-height: 1.55;
}

/* Route path v2 */
.route-path-v2 {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .2rem;
}
.route-path-v2__point {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.route-path-v2__point--dest { flex-direction: row-reverse; text-align: right; }
.route-path-v2__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--white);
  flex-shrink: 0;
}
.route-path-v2__point--dest .route-path-v2__dot {
  border-color: var(--navy);
  background: var(--navy);
}
.route-path-v2__label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.route-path-v2__line {
  flex: 0 0 48px;
  height: 1px;
  background: var(--mid-gray);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.route-path-v2__arrow {
  background: var(--white);
  padding: 0 2px;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

/* Card meta pills — reuse existing .route-meta-pill */
.route-card-v2__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .6rem;
}

/* Card footer */
.route-card-v2__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.25rem 1.1rem;
  border-top: 1px solid var(--light-gray);
  background: var(--off-white);
}
.route-card-v2__price {
  display: flex;
  flex-direction: column;
  gap: .05rem;
}
.route-price-sub {
  font-size: .63rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  font-weight: 600;
}
.route-price-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

/* Custom routes CTA v2 */
.routes-custom-v2 {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.routes-custom-v2__icon {
  color: var(--gold-light);
  flex-shrink: 0;
  opacity: .85;
}
.routes-custom-v2__text {
  flex: 1;
  min-width: 200px;
}
.routes-custom-v2__text h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: .35rem;
}
.routes-custom-v2__text p {
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  line-height: 1.6;
}

/* ── 42. QUOTE STEPS BAR ────────────────────────────────────── */
.quote-steps-bar {
  position: sticky;
  top: var(--navbar-h);
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.quote-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.5rem;
  gap: 0;
}
.quote-step {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.4);
  transition: color .3s;
}
.quote-step.active { color: var(--gold-light); }
.quote-step.done   { color: rgba(255,255,255,.75); }
.quote-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.18);
  flex-shrink: 0;
  transition: background .3s, border-color .3s, color .3s;
}
.quote-step.active .quote-step__num {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.quote-step.done .quote-step__num {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.quote-step__line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,.15);
  margin: 0 .75rem;
  flex-shrink: 0;
}

/* ── 43. YOUTUBE EMBED ──────────────────────────────────────── */
.plan-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
}
.plan-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── Responsive patches ─────────────────────────────────── */
@media (max-width: 768px) {
  .routes-grid-v2 { grid-template-columns: 1fr; }
  .routes-custom-v2 { flex-direction: column; text-align: center; padding: 1.5rem; }
  .routes-custom-v2__icon { display: none; }
  .quote-step span { display: none; }
  .quote-step__line { width: 28px; margin: 0 .4rem; }
  .route-card-v2__footer { flex-direction: column; gap: .75rem; align-items: flex-start; }
}
@media (max-width: 480px) {
  .routes-stat { gap: .1rem; }
  .routes-stat__num { font-size: 1.2rem; }
  .route-path-v2__label { font-size: .75rem; }
}

/* ── 44. QUOTE PAGE — COMPLETE STYLES ───────────────────────── */

/* Hero sub-elements */
.quote-hero { position: relative; overflow: hidden; }
.quote-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 55%, var(--navy) 100%);
}
.quote-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 80% 50%, rgba(164,129,17,.13) 0%, transparent 60%);
}
.quote-hero__content { position: relative; z-index: 2; }
.quote-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; color: var(--white);
  margin: .55rem 0 .5rem; line-height: 1.1;
}
.quote-hero__subtitle { font-size: .92rem; color: rgba(255,255,255,.65); }

/* ── 2-column layout ── */
.quote__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}
.quote__form-wrapper { min-width: 0; }

/* ── Form steps as cards ── */
.form-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--mid-gray);
}
.form-section__title {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-serif); font-size: 1.55rem;
  font-weight: 700; color: var(--navy);
  margin-bottom: 1.6rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-gray);
}
.step-num {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: .9rem;
  font-weight: 800; flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

/* ── Service chips ── */
.service-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(126px, 1fr));
  gap: .6rem; margin-top: .5rem;
}
.service-chip {
  display: flex; flex-direction: column;
  align-items: center; gap: .4rem;
  padding: .85rem .6rem .75rem;
  background: var(--off-white);
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-md);
  cursor: pointer; font-family: var(--font-sans);
  text-align: center; color: var(--text-body);
  position: relative; overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.service-chip:hover {
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.service-chip.active {
  border-color: var(--gold);
  background: var(--gold-pale);
  box-shadow: 0 0 0 3px rgba(164,129,17,.18);
  color: var(--navy);
}
.service-chip.active::after {
  content: "✓";
  position: absolute; top: 4px; right: 6px;
  font-size: .62rem; color: var(--gold); font-weight: 800;
}
.service-chip__icon { font-size: 1.55rem; line-height: 1; display: block; }
.service-chip__label {
  font-size: .71rem; font-weight: 600;
  line-height: 1.3; display: block;
}

/* ── Date shortcuts ── */
.date-shortcuts { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: .5rem; }
.date-shortcut {
  padding: .3rem .85rem;
  background: var(--off-white);
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-full);
  font-size: .76rem; font-weight: 600;
  font-family: var(--font-sans); color: var(--text-body);
  cursor: pointer; transition: all .18s;
}
.date-shortcut:hover { border-color: var(--gold); background: var(--gold-pale); color: var(--navy); }

/* ── Counter inputs ── */
.counter-input {
  display: flex; align-items: center; gap: .65rem;
  background: var(--off-white); border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-md); padding: .55rem .75rem;
  transition: border-color .2s;
}
.counter-input:focus-within { border-color: var(--gold); }
.counter-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--mid-gray); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--navy); flex-shrink: 0;
  transition: all .18s;
}
.counter-btn:hover:not([disabled]) {
  background: var(--gold); border-color: var(--gold);
  color: #fff; box-shadow: var(--shadow-gold);
}
.counter-btn[disabled] { opacity: .35; cursor: not-allowed; }
.counter-display { flex: 1; text-align: center; }
.counter-display > span:first-child {
  font-family: var(--font-serif); font-size: 1.4rem;
  font-weight: 700; color: var(--navy); line-height: 1; display: block;
}
.counter-unit {
  font-size: .68rem; color: var(--text-muted);
  font-weight: 500; text-transform: uppercase; letter-spacing: .06em;
}

/* ── Live quote panel ── */
.quote__panel {
  position: sticky;
  top: calc(var(--navbar-h) + 3.75rem);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--mid-gray);
  overflow: hidden;
}
.quote-panel__header {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem .9rem;
  background: var(--navy);
}
.quote-panel__header h3 {
  font-family: var(--font-serif); font-size: 1.15rem;
  color: var(--white); font-weight: 700; margin: 0;
}
.quote-panel__badge {
  font-size: .63rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold-light); background: rgba(164,129,17,.18);
  padding: .2rem .65rem; border-radius: var(--radius-full);
  border: 1px solid rgba(164,129,17,.3);
}
.quote-summary-card {
  margin: 1rem 1.2rem 0;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  border: 1px solid rgba(164,129,17,.2);
}
.quote-summary-item {
  font-size: .82rem; font-weight: 600;
  color: var(--navy); line-height: 1.5;
}
.quote-panel__breakdown {
  padding: 1rem 1.25rem; min-height: 80px;
}
.quote-empty {
  display: flex; flex-direction: column;
  align-items: center; gap: .65rem;
  padding: 1.25rem 0; text-align: center;
}
.quote-empty p { font-size: .8rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
.breakdown-row,
.quote-breakdown-row {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: .4rem 0;
  border-bottom: 1px dashed var(--light-gray);
  font-size: .82rem;
  color: var(--text-body);
}
.breakdown-row:last-child,
.quote-breakdown-row:last-child { border-bottom: none; }
.breakdown-row span:last-child,
.quote-breakdown-row span:last-child { font-weight: 700; color: var(--navy); font-family: var(--font-serif); }
.breakdown-row--surcharge .breakdown-row__val,
.quote-breakdown-row.recargo span:last-child { color: #d97706; }
.quote-panel__total {
  padding: 1.1rem 1.25rem 1.2rem;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  text-align: center;
}
.total__label {
  font-size: .65rem; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.55);
  font-weight: 700; margin-bottom: .3rem;
}
.total__amount {
  font-family: var(--font-serif); font-size: 2.5rem;
  font-weight: 700; color: var(--gold-light);
  line-height: 1; margin-bottom: .35rem;
}
.total__note { font-size: .7rem; color: rgba(255,255,255,.45); line-height: 1.5; margin: 0; }
.quote-panel__trust {
  padding: .9rem 1.25rem 1.1rem;
  display: flex; flex-direction: column; gap: .5rem;
  border-top: 1px solid var(--light-gray);
}
.trust__row {
  display: flex; align-items: center; gap: .55rem;
  font-size: .77rem; color: var(--text-body); font-weight: 500;
}
.form__legal {
  margin-top: 1rem; font-size: .7rem;
  color: var(--text-muted); text-align: center; line-height: 1.6;
}
/* ── Base form controls ── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--navy); margin-bottom: .4rem; letter-spacing: .03em;
}
.form-control {
  width: 100%; padding: .72rem 1rem;
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: .9rem;
  color: var(--dark); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(164,129,17,.12);
}
.form-control:invalid:not(:placeholder-shown) { border-color: #ef4444; }
.form-textarea { min-height: 100px; resize: vertical; }
.form-hint { font-size: .75rem; color: var(--mid); margin-top: .3rem; display: flex; align-items: flex-start; gap: .3rem; }
.form-row   { display: grid; gap: 1rem; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 580px) { .form-row--2 { grid-template-columns: 1fr; } }

.form-control--fancy {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 18px;
  padding-right: 2.5rem;
}

/* ── Responsive ── */
@media (max-width: 920px) {
  .quote__layout { grid-template-columns: 1fr; }
  .quote__panel { position: relative; top: auto; }
}
@media (max-width: 600px) {
  .form-section { padding: 1.5rem 1.1rem; }
  .service-chips { grid-template-columns: repeat(4, 1fr); gap: .4rem; }
  .service-chip { padding: .65rem .35rem .55rem; }
  .service-chip__icon { font-size: 1.2rem; }
  .service-chip__label { font-size: .65rem; }
  .total__amount { font-size: 2rem; }
  .form-section__title { font-size: 1.3rem; }
}

/* ── 45. CONTAINER VARIANTS ─────────────────────────────────── */
.container--xs  { max-width: 520px;  margin: 0 auto; padding: 0 1.5rem; }
.container--sm  { max-width: 720px;  margin: 0 auto; padding: 0 1.5rem; }
.container--md  { max-width: 900px;  margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }

/* ── 46. QUOTE SUCCESS PAGE ─────────────────────────────────── */
.success-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--mid-gray);
  overflow: hidden;
  text-align: center;
}
.success-card__icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), #fff9e6);
  border: 2px solid rgba(164,129,17,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem auto 1.25rem;
  box-shadow: 0 0 0 8px rgba(164,129,17,.07);
}
.success-card__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 1.5rem .5rem;
  line-height: 1.2;
}
.success-card__code {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0 1.5rem .75rem;
}
.success-card__code strong {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .06em;
  background: var(--gold-pale);
  padding: .15rem .55rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(164,129,17,.2);
}
.success-card__message {
  font-size: .9rem;
  color: var(--text-body);
  margin: 0 2rem 0;
  line-height: 1.6;
}
.success-card__summary {
  margin: 1.75rem 0 0;
  padding: 1.5rem 1.75rem;
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
  text-align: left;
}
.success-card__summary h3 {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.summary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.summary-table tr {
  border-bottom: 1px solid var(--light-gray);
}
.summary-table tr:last-child { border-bottom: none; }
.summary-table td {
  padding: .55rem .25rem;
  color: var(--text-body);
  vertical-align: top;
}
.summary-table td:first-child {
  width: 38%;
  color: var(--text-muted);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding-right: .75rem;
}
.summary-table td:last-child { font-weight: 500; color: var(--navy); }
.summary-table__total td {
  padding-top: .85rem;
  font-size: 1rem !important;
}
.summary-table__total td:first-child {
  font-size: .85rem !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
}
.summary-table__total td:last-child strong {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 700;
}
.success-card__actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  padding: 1.5rem 1.75rem 2rem;
  flex-wrap: wrap;
}

/* WhatsApp share block (optional) */
.success-whatsapp {
  margin: 0 1.75rem 1.5rem;
  padding: 1rem 1.25rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  transition: background .2s;
}
.success-whatsapp:hover { background: #dcfce7; }
.success-whatsapp svg { flex-shrink: 0; color: #16a34a; }
.success-whatsapp span {
  font-size: .82rem;
  font-weight: 600;
  color: #15803d;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .success-card__title { font-size: 1.55rem; }
  .success-card__summary { padding: 1.25rem 1.1rem; }
  .success-card__actions { padding: 1.25rem 1.1rem 1.75rem; }
  .success-card__actions .btn { flex: 1; justify-content: center; }
  .container--xs { padding: 0 1rem; }
}



.success-book {
  margin: 0 1.75rem 1.5rem;
  padding: 1rem 1.25rem;
  background: #f0fdf4;
  border: 1px solid #71a9f3;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  transition: background .2s;
}
.success-book:hover { background: #8bd7ee; }
.success-book svg { flex-shrink: 0; color: #1630a3; }
.success-book span {
  font-size: .82rem;
  font-weight: 600;
  color: #153280;
  line-height: 1.4;
}


/* ══════════════════════════════════════════════════════════════
   47. NEWSLETTER POPUP
══════════════════════════════════════════════════════════════ */
.newsletter-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(11,25,68,.65);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.newsletter-overlay.active { opacity: 1; visibility: visible; }

.newsletter-modal {
  background: var(--navy-dark);
  border: 1.5px solid rgba(164,129,17,.35);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem 2rem;
  max-width: 420px; width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  animation: modalPop .4s cubic-bezier(.16,1,.3,1) both;
}
@keyframes modalPop {
  from { transform: scale(.88) translateY(24px); opacity: 0; }
  to   { transform: scale(1) translateY(0);       opacity: 1; }
}

.newsletter-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.08); border: none;
  border-radius: 50%; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.newsletter-close:hover { background: rgba(255,255,255,.18); color: #fff; }

.newsletter-modal__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #c9a227);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: #fff;
  box-shadow: 0 8px 24px rgba(164,129,17,.4);
}

.newsletter-modal__badge {
  display: inline-block; font-size: .65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--gold-light); background: rgba(164,129,17,.18);
  border: 1px solid rgba(164,129,17,.4);
  padding: .2rem .8rem; border-radius: 100px; margin-bottom: .75rem;
}

.newsletter-modal__title {
  font-family: var(--font-serif); font-size: 1.9rem; font-weight: 700;
  color: #fff; line-height: 1.15; margin-bottom: .75rem;
}
.newsletter-modal__title span { color: var(--gold-light); }

.newsletter-modal__desc {
  font-size: .88rem; color: rgba(255,255,255,.6);
  line-height: 1.6; margin-bottom: 1.5rem;
}

.newsletter-modal__form { display: flex; flex-direction: column; gap: .65rem; }

.newsletter-modal__input {
  width: 100%; padding: .75rem 1rem;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: #fff; font-family: var(--font-sans); font-size: .9rem;
  transition: border-color .2s;
  box-sizing: border-box;
}
.newsletter-modal__input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-modal__input:focus { outline: none; border-color: var(--gold); }

.newsletter-modal__btn { margin-top: .25rem; gap: .6rem; justify-content: center; }

.newsletter-modal__legal {
  font-size: .68rem; color: rgba(255,255,255,.35);
  margin: .75rem 0 0; line-height: 1.5;
}

.newsletter-modal__skip {
  background: none; border: none; cursor: pointer;
  font-size: .72rem; color: rgba(255,255,255,.3);
  text-decoration: underline; margin-top: .5rem;
  padding: .25rem; display: block; width: 100%;
  transition: color .2s;
}
.newsletter-modal__skip:hover { color: rgba(255,255,255,.55); }

/* Error inline dentro del modal */
.newsletter-modal__error {
  background: rgba(239,68,68,.15);
  border: 1px solid rgba(239,68,68,.4);
  border-radius: var(--radius-sm);
  color: #fca5a5;
  font-size: .82rem;
  line-height: 1.5;
  padding: .6rem .9rem;
  text-align: left;
  margin-bottom: .5rem;
}

/* Estado de éxito (reemplaza el formulario) */
.newsletter-success {
  display: flex; flex-direction: column; align-items: center;
  gap: .85rem; padding: 1.5rem 0 .5rem;
}
.newsletter-success p {
  color: #fff; font-weight: 700; font-size: 1.05rem; margin: 0; line-height: 1.4;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   48. HOME STATS STRIP
══════════════════════════════════════════════════════════════ */
.home-stats-strip {
  background: var(--navy);
  border-top: 1px solid rgba(164,129,17,.2);
  border-bottom: 1px solid rgba(164,129,17,.2);
  padding: 1.1rem 0;
}
.home-stats-strip__grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.home-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: .5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.home-stat:last-child { border-right: none; }
.home-stat__num {
  font-family: var(--font-serif); font-size: 1.6rem;
  font-weight: 700; color: var(--gold-light); line-height: 1;
}
.home-stat__label {
  font-size: .68rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .08em;
  margin-top: .2rem; font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   49. COMPARISON TABLE (CityPass style)
══════════════════════════════════════════════════════════════ */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.compare-table {
  width: 100%; border-collapse: collapse;
  font-family: var(--font-sans); font-size: .9rem;
  background: var(--white);
}

.compare-table thead th {
  padding: 1rem 1.25rem; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  border-bottom: 2px solid var(--light-gray);
  text-align: center;
}
.compare-table thead th:first-child { text-align: left; color: var(--navy); }

.compare-table__col--taxi { background: #f9fafb; color: var(--mid); }
.compare-table__col--dh   { background: var(--navy); color: var(--gold-light); }

.compare-table tbody tr {
  border-bottom: 1px solid var(--light-gray);
  transition: background .15s;
}
.compare-table tbody tr:hover { background: var(--off-white); }
.compare-table tbody tr:last-child { border-bottom: none; }

.compare-table tbody td {
  padding: .85rem 1.25rem; color: var(--text-body);
  vertical-align: middle;
}
.compare-table tbody td:first-child {
  font-weight: 600; color: var(--navy);
}
.compare-table tbody td:not(:first-child) {
  text-align: center; font-size: .85rem;
}

.compare-table td.yes  { color: #16a34a; font-weight: 700; background: #f0fdf4; }
.compare-table td.no   { color: #ef4444; background: #fef2f2; }
.compare-table td.partial { color: #d97706; font-weight: 600; font-size: .78rem; background: #fffbeb; }

/* ══════════════════════════════════════════════════════════════
   50. FLEET SHOWCASE
══════════════════════════════════════════════════════════════ */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 320px;
  gap: 1.5rem;
  align-items: start;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--light-gray);
  transition: transform .25s, box-shadow .25s;
}
.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.fleet-card__img {
  height: 200px; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.fleet-card__img--suburban {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #162258 100%);
}
.fleet-card__img--escalade {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
/* SUV icon overlay */
.fleet-card__img::before {
  content: '🚙';
  font-size: 5rem; line-height: 1;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.4));
}

.fleet-card__badge {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.15); color: #fff;
  font-size: .67rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; padding: .25rem .65rem;
  border-radius: 100px; border: 1px solid rgba(255,255,255,.3);
}
.fleet-card__badge--gold {
  background: rgba(164,129,17,.35); color: var(--gold-light);
  border-color: rgba(164,129,17,.5);
}

.fleet-card__body { padding: 1.5rem; }
.fleet-card__title {
  font-family: var(--font-serif); font-size: 1.3rem;
  color: var(--navy); font-weight: 700; margin-bottom: .5rem;
}
.fleet-card__desc {
  font-size: .85rem; color: var(--mid); line-height: 1.6;
  margin-bottom: 1rem;
}
.fleet-card__specs {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .45rem;
}
.fleet-card__specs li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--text-body);
}
.fleet-card__specs li svg { color: var(--gold); flex-shrink: 0; }

/* Fleet CTA card */
.fleet-cta-card {
  background: linear-gradient(160deg, var(--navy-dark), #162258);
  border: 1.5px solid rgba(164,129,17,.3);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  color: #fff;
}
.fleet-cta-card h3 {
  font-family: var(--font-serif); font-size: 1.5rem;
  color: #fff; margin-bottom: .5rem;
}
.fleet-cta-card p { font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: 1.25rem; }
.fleet-cta__list {
  list-style: none; padding: 0; margin: 0 0 1rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.fleet-cta__list li {
  font-size: .82rem; color: rgba(255,255,255,.8);
  display: flex; align-items: center; gap: .5rem;
}

/* ══════════════════════════════════════════════════════════════
   51. HOW IT WORKS — DARK VARIANT
══════════════════════════════════════════════════════════════ */
.section--dark-navy {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0d1b4a 100%);
}
.section--navy { background: var(--navy); }

.step__card--dark {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
}
.step__card--dark .step__title { color: #fff; }
.step__card--dark .step__desc  { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════════════════════════
   52. ATTRACTIONS GRID
══════════════════════════════════════════════════════════════ */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.attraction-chip {
  display: flex; align-items: flex-start; gap: .85rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  transition: background .2s, border-color .2s, transform .2s;
}
.attraction-chip:hover {
  background: rgba(164,129,17,.12);
  border-color: rgba(164,129,17,.3);
  transform: translateY(-2px);
}
.attraction-chip__icon { font-size: 1.75rem; flex-shrink: 0; line-height: 1; }
.attraction-chip > div { display: flex; flex-direction: column; gap: .2rem; }
.attraction-chip strong { font-size: .88rem; font-weight: 700; color: #fff; }
.attraction-chip span   { font-size: .75rem; color: rgba(255,255,255,.5); line-height: 1.4; }

/* ══════════════════════════════════════════════════════════════
   53. HOME CTA STRIP
══════════════════════════════════════════════════════════════ */
.home-cta-strip {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0f1f56 50%, var(--navy-dark) 100%);
  padding: 5rem 0;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(164,129,17,.25);
}
.home-cta-strip::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(164,129,17,.12) 0%, transparent 65%);
}
.home-cta-strip .container { position: relative; z-index: 1; }
.home-cta-strip__content { text-align: center; }
.home-cta-strip__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff; line-height: 1.2; margin-bottom: 1rem;
}
.home-cta-strip__content p {
  font-size: .95rem; color: rgba(255,255,255,.65);
  line-height: 1.7; margin-bottom: 2rem;
}
.home-cta-strip__btns {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   54. ROUTE MAP STYLES
══════════════════════════════════════════════════════════════ */
.route-map-wrap {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--light-gray);
}
.route-map-inner {
  height: 220px; background: var(--off-white);
  position: relative;
}
.route-map-inner iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}
.route-map-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .65rem; text-align: center; padding: 1.5rem;
  background: linear-gradient(135deg, var(--off-white), #f0ede6);
}
.route-map-placeholder svg { color: var(--mid); opacity: .5; }
.route-map-placeholder span {
  font-size: .8rem; font-weight: 600;
  color: var(--mid);
}
.route-map-btn {
  display: flex; align-items: center; gap: .4rem;
  background: var(--navy); color: #fff;
  border: none; border-radius: var(--radius-full);
  padding: .45rem 1.1rem; font-size: .78rem;
  font-weight: 600; cursor: pointer;
  font-family: var(--font-sans);
  transition: background .2s, transform .15s;
}
.route-map-btn:hover { background: var(--navy-mid); transform: scale(1.03); }
.route-map-link {
  display: flex; align-items: center; gap: .4rem;
  font-size: .73rem; color: var(--gold); font-weight: 600;
  padding: .5rem .75rem;
  background: rgba(164,129,17,.06);
  border-top: 1px solid var(--light-gray);
  text-decoration: none; transition: background .15s;
  justify-content: flex-end;
}
.route-map-link:hover { background: rgba(164,129,17,.12); }
.route-meta-pill--suv { background: rgba(11,25,68,.08); color: var(--navy); font-weight: 600; }

/* ══════════════════════════════════════════════════════════════
   55. VISUALLY HIDDEN (accessibility)
══════════════════════════════════════════════════════════════ */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — new sections
══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .fleet-cta-card { grid-column: span 2; }
}
@media (max-width: 860px) {
  .compare-table thead th:nth-child(2) { display: none; }
  .compare-table tbody td:nth-child(2) { display: none; }
  .home-stat { padding: .5rem 1.1rem; }
  .home-stat__num { font-size: 1.3rem; }
}
@media (max-width: 720px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-cta-card { grid-column: span 1; }
  .attractions-grid { grid-template-columns: 1fr 1fr; }
  .home-stats-strip__grid { gap: 0; }
  .home-stat { padding: .6rem .75rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); width: 50%; }
  .home-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 480px) {
  .newsletter-modal { padding: 2rem 1.25rem 1.5rem; }
  .newsletter-modal__title { font-size: 1.55rem; }
  .attractions-grid { grid-template-columns: 1fr; }
  .home-cta-strip__btns .btn { width: 100%; justify-content: center; }
  .compare-table tbody td, .compare-table thead th { padding: .65rem .75rem; font-size: .8rem; }
}

/* ══════════════════════════════════════════════════════════════
   56. LANGUAGE TOGGLE
══════════════════════════════════════════════════════════════ */

/* ---- Desktop lang pills in navbar ---- */
.navbar__lang {
  display: flex;
  align-items: center;
  gap: .28rem;
  flex-shrink: 0;
}

.lang-sep {
  color: rgba(255,255,255,.3);
  font-size: .7rem;
  font-weight: 300;
  user-select: none;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-full, 999px);
  padding: .22rem .62rem;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
  text-transform: uppercase;
}

.lang-pill:hover {
  color: var(--white, #fff);
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.1);
}

.lang-pill.lang-pill--active {
  color: var(--gold, #A48111);
  border-color: var(--gold, #A48111);
  background: rgba(164,129,17,.12);
}

/* ---- Mobile language in nav dropdown ---- */
.nav__lang-mobile {
  display: none; /* shown only on mobile via media query */
  flex-direction: row;
  gap: .5rem;
  padding: .85rem 1.1rem .5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: .35rem;
}

.nav__lang-btn {
  font-size: .8rem;
  padding: .55rem 1rem;
  border-radius: var(--radius-full, 999px);
  flex: 1;
  justify-content: center;
}

/* ---- Mobile: hide desktop lang pills, show dropdown lang, open state ---- */
@media (max-width: 768px) {
  .navbar__lang { display: none; }  /* hide desktop pills on mobile */
  .nav__lang-mobile { display: flex; }

  /* Solid navbar background when mobile menu is open */
  .navbar.navbar--menu-open {
    background: rgba(6,13,42,.97) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  /* Ensure toggle is always above everything */
  .navbar__toggle {
    position: relative;
    z-index: 1001;
  }
}

/* ══════════════════════════════════════════════════════════════
   57. HIDE GOOGLE TRANSLATE BAR
══════════════════════════════════════════════════════════════ */
/* NOTE: keep GT container in render tree (not display:none) so GT initialises */
#google_translate_element,
#google_translate_element_admin {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Completely hide the Google Translate toolbar/banner */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
  height: 0 !important;
}

/* Prevent Google Translate from pushing page down */
body {
  top: 0 !important;
}

html.translated-ltr body,
html.translated-rtl body {
  top: 0 !important;
}

/* Hide Google Translate tooltips and balloons */
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-te-ftab-float,
#goog-gt-tt,
.goog-te-gadget,
.goog-te-spinner-pos,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-l4eHX-hSRGPd {
  display: none !important;
}

/* Keep translated text readable — remove Google's default yellow bg on hover */
.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}
