/* ============================================================
   SECTIONS — Header, Hero (Session 1)
   Additional sections added in Sessions 2–5
   ============================================================ */


/* ==========================================================
   HEADER
   ========================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: 5.5rem;
  display: flex;
  align-items: center; /* equal top/bottom spacing */
  /* Start fully transparent */
  background-color: transparent;
  transition:
    background-color var(--dur-normal) var(--ease),
    box-shadow       var(--dur-normal) var(--ease),
    backdrop-filter  var(--dur-normal) var(--ease),
    transform        300ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Taller on desktop to fit bigger logo */
@media (min-width: 768px) {
  .site-header {
    height: 6rem;
  }
}

/* Scrolled state — frosted glass, same warm tint but semi-transparent */
.site-header.is-scrolled {
  background: rgba(250, 250, 249, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

/* Nav links → dark on light frosted header */
.site-header.is-scrolled .nav__link {
  color: #3a3a3a;
}
.site-header.is-scrolled .nav__link:hover {
  color: #0d0d0d;
  border-color: rgba(0, 0, 0, 0.28);
}

/* Dropdown — matches frosted light header background */
.site-header.is-scrolled .nav__dropdown {
  background: rgba(250, 250, 249, 0.96);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
}
.site-header.is-scrolled .nav__dropdown::before {
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.16)  0%,
    rgba(0, 0, 0, 0)    40%,
    rgba(0, 0, 0, 0)    60%,
    rgba(0, 0, 0, 0.16) 100%
  );
}
.site-header.is-scrolled .nav__dropdown__item {
  color: rgba(0, 0, 0, 0.60);
}
.site-header.is-scrolled .nav__dropdown__item + .nav__dropdown__item {
  border-top-color: rgba(0, 0, 0, 0.07);
}
.site-header.is-scrolled .nav__dropdown__item:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #0d0d0d;
}
.site-header.is-scrolled .nav__dropdown__icon {
  background: rgba(0, 0, 0, 0.07);
  color: #0d0d0d;
}
.site-header.is-scrolled .nav__dropdown__item:hover .nav__dropdown__icon {
  background-color: rgba(0, 0, 0, 0.12);
}
.site-header.is-scrolled .nav__dropdown__title {
  color: #0d0d0d;
}
.site-header.is-scrolled .nav__dropdown__desc {
  color: rgba(0, 0, 0, 0.42);
}

/* Phone button → dark border + dark text on light header */
.site-header.is-scrolled .header__phone {
  color: #0d0d0d;
  border: 1px solid rgba(0, 0, 0, 0.30); /* solid dark border replaces white ::before */
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
/* Hide the white gradient border — invisible on light background */
.site-header.is-scrolled .header__phone::before {
  opacity: 0;
}
.site-header.is-scrolled .header__phone:hover {
  background: #0d0d0d;
  border-color: #0d0d0d;
  color: #ffffff;
}

/* Hamburger lines → dark */
.site-header.is-scrolled .hamburger__line {
  background-color: #0d0d0d;
}

/* On light-bg pages / sections — white header */
.site-header.is-light {
  background-color: var(--color-bg);
  box-shadow: 0 1px 0 var(--color-border);
}

/* Headroom: slide out on scroll-down, slide in on scroll-up */
.site-header.is-hidden {
  /* calc(-100% - 1rem) clears both the element height and the top gap on mobile */
  transform: translateY(calc(-100% - 1rem));
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-6);
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: var(--z-raised);
}

.header__logo-img {
  height: 4.25rem;
  width: auto;
  transition: height var(--dur-normal) var(--ease),
              opacity var(--dur-normal) var(--ease);
}

@media (min-width: 768px) {
  .header__logo-img {
    height: 5.5rem;
  }
}

/* Shrink logo when header is sticky/scrolled */
.site-header.is-scrolled .header__logo-img {
  height: 3rem;
}

@media (min-width: 768px) {
  .site-header.is-scrolled .header__logo-img {
    height: 3.75rem;
  }
}

/* Logo swap: light logo default, dark logo hidden */
.header__logo-img--dark {
  display: none;
}

/* On scrolled (light bg): show dark logo, hide light logo */
.site-header.is-scrolled .header__logo-img--light {
  display: none;
}
.site-header.is-scrolled .header__logo-img--dark {
  display: block;
}

/* Navigation */
.header__nav {
  flex: 1;
  display: none;
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    justify-content: center;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);   /* pill padding is internal — tight gap looks cleaner */
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: var(--ls-wide);
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
  border: 1px solid transparent;   /* reserves layout space — no shift on hover */
  position: relative;
  transition: color 0.25s ease, border-color 0.25s ease;
}

/* Outline pill hover — transparent / dark-bg header */
.nav__link:hover {
  color: #ffffff;
  border-color: #ffffff;
}

/* Light mode nav links */
.site-header.is-light .nav__link {
  color: var(--color-text-muted);
}

.site-header.is-light .nav__link:hover {
  color: var(--color-text);
  border-color: rgba(0, 0, 0, 0.28);
}

/* ============================================================
   NAV DROPDOWN — Services
   Same smoked-glass + diagonal-fade border as the hero form
   ============================================================ */

.nav__item--dropdown {
  position: relative;
}

/* Invisible bridge — covers the gap between nav link and dropdown panel.
   Without it the hover is lost mid-travel and the menu snaps shut.
   Width matches the dropdown panel; height matches the gap (0.5rem + buffer). */
.nav__item--dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 0.75rem;
}

/* Chevron inline with label */
.nav__link--has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav__chevron {
  width: 0.7rem;
  height: 0.7rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.nav__item--dropdown:hover .nav__chevron {
  transform: rotate(180deg);
}

/* Dropdown panel — mirrors hero-form smoked glass */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 290px;
  padding: 0.5rem;
  background: rgba(15, 15, 15, 0.72);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-radius: var(--radius-lg);   /* 1rem — same as .glass--card */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: var(--z-dropdown);
}

/* Dual disconnected highlight — matches pill header, phone button, form and dock */
.nav__dropdown::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  padding: 1px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 1.00)  0%,
    rgba(255, 255, 255, 0)    40%,
    rgba(255, 255, 255, 0)    60%,
    rgba(255, 255, 255, 1.00) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

/* Reveal on hover */
.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Individual items */
.nav__dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  position: relative;
  z-index: 1;   /* above ::before border layer */
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav__dropdown__item + .nav__dropdown__item {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.nav__dropdown__item:hover {
  background-color: rgba(255, 255, 255, 0.09);
  color: #ffffff;
}

/* Icon box */
.nav__dropdown__icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.nav__dropdown__icon svg {
  width: 1rem;
  height: 1rem;
}

.nav__dropdown__item:hover .nav__dropdown__icon {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Text block */
.nav__dropdown__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav__dropdown__title {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: var(--ls-wide);
}

.nav__dropdown__desc {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

/* Header Actions (right side) */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   LANGUAGE SWITCHER
   ---------------------------------------------------------- */

.header__lang {
  display: none; /* hidden on mobile — shown in mobile menu instead */
  align-items: center;
  gap: 0.2rem;
}

@media (min-width: 640px) {
  .header__lang {
    display: flex;
  }
}

.header__lang-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 4px 3px;
  transition: color 0.2s ease;
  line-height: 1;
}

.header__lang-btn.is-active {
  color: #ffffff;
}

.header__lang-btn:hover:not(.is-active) {
  color: rgba(255, 255, 255, 0.75);
}

.header__lang-sep {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.20);
  user-select: none;
}

/* Scrolled — flip to dark */
.site-header.is-scrolled .header__lang-btn {
  color: rgba(0, 0, 0, 0.35);
}

.site-header.is-scrolled .header__lang-btn.is-active {
  color: #0d0d0d;
}

.site-header.is-scrolled .header__lang-btn:hover:not(.is-active) {
  color: rgba(0, 0, 0, 0.65);
}

.site-header.is-scrolled .header__lang-sep {
  color: rgba(0, 0, 0, 0.15);
}

/* ── Mobile / tablet: Floating Glass Pill ────────────────────────
   Replaces the full-width sticky bar with a compact floating pill
   that detaches from viewport edges, always shows premium dark
   glass, and hides on scroll-down / reveals on scroll-up.
   ─────────────────────────────────────────────────────────────── */
@media (max-width: 1023px) {

  /* ① Pill geometry — float off the viewport edges */
  .site-header {
    top: 0.75rem;
    left: 1rem;
    right: 1rem;
    height: 3.75rem;
    border-radius: 0.75rem; /* rounded-xl 12px — matches structural card discipline */
    /* Same smoked-glass material as .hero-form */
    background: rgba(15, 15, 15, 0.55);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    /* Border replaced by diagonal-fade pseudo-element below */
    border: none;
    box-shadow:
      0 25px 50px rgba(0, 0, 0, 0.45),
      0 8px  20px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.10);
  }

  /* Dual disconnected highlight — top edge lit from left cap, bottom edge lit from right cap.
     160deg on a wide pill forces the 0%/100% white stops to the L-mid and R-mid,
     while 40-60% transparent kills both TR and BL corners completely. */
  .site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
    padding: 1px;
    background: linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.80)  0%,
      rgba(255, 255, 255, 0)    40%,
      rgba(255, 255, 255, 0)    60%,
      rgba(255, 255, 255, 0.80) 100%
    );
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
  }

  /* ② Logo: compact size that fits the 3.75rem pill height */
  .site-header .header__logo-img {
    height: 2.75rem;
  }

  /* ③ is-scrolled: glass deepens slightly as page is read */
  .site-header.is-scrolled {
    background: rgba(15, 15, 15, 0.72);
    box-shadow:
      0 25px 50px rgba(0, 0, 0, 0.50),
      0 8px  20px rgba(0, 0, 0, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.10);
  }

  /* Logo stays same size in scrolled state — pill already compact */
  .site-header.is-scrolled .header__logo-img {
    height: 2.75rem;
  }

  /* ④ Always keep white logo — pill is always dark */
  .site-header .header__logo-img--light        { display: block; }
  .site-header .header__logo-img--dark         { display: none;  }
  .site-header.is-scrolled .header__logo-img--light { display: block; }
  .site-header.is-scrolled .header__logo-img--dark  { display: none;  }

  /* ⑤ Hamburger always white against dark glass */
  .site-header .hamburger__line,
  .site-header.is-scrolled .hamburger__line {
    background-color: #ffffff;
  }

  /* ⑥ Language switcher — always visible in the pill (pill is always dark) */
  .site-header .header__lang {
    display: flex;
    gap: 0.15rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  /* Inactive: white/50 */
  .site-header .header__lang-btn {
    padding: 4px 5px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.50);
    border: none;
    background: transparent;
    transition: color 0.2s ease;
  }

  /* Active: pure white */
  .site-header .header__lang-btn.is-active {
    color: #ffffff;
    background: transparent;
  }

  .site-header .header__lang-btn:hover:not(.is-active) {
    color: rgba(255, 255, 255, 0.78);
  }

  /* Slash separator */
  .site-header .header__lang-sep {
    display: inline;
    color: rgba(255, 255, 255, 0.25);
  }

}

/* ── Mobile EN/FR toggle ─────────────────────────────────────────
   Revealed on scroll. Against the new dark header: slash style,
   active = pure white, inactive = white/50. No pill background.
   ─────────────────────────────────────────────────────────────── */
@media (max-width: 639px) {

  /* Reveal + fade in */
  .site-header.is-scrolled .header__lang {
    display: flex;
    gap: 0.15rem;
    padding: 0;
    background: transparent;   /* no pill — dark header is the bg */
    border-radius: 0;
    animation: langFadeIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes langFadeIn {
    from { opacity: 0; transform: scale(0.88); }
    to   { opacity: 1; transform: scale(1); }
  }

  /* Inactive lang button — white/50 */
  .site-header.is-scrolled .header__lang-btn {
    padding: 4px 5px;
    border-radius: 0;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.50);
    border: none;
    background: transparent;
    transition: color 0.2s ease;
  }

  /* Active lang button — pure white */
  .site-header.is-scrolled .header__lang-btn.is-active {
    color: #ffffff;
    background: transparent;
  }

  .site-header.is-scrolled .header__lang-btn:hover:not(.is-active) {
    color: rgba(255, 255, 255, 0.78);
  }

  /* Show slash separator — white/25 */
  .site-header.is-scrolled .header__lang-sep {
    display: inline;
    color: rgba(255, 255, 255, 0.25);
  }

}

/* Mobile menu lang switcher */
.mobile-menu__lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.30);
}

.mobile-menu__lang-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55); /* raised from 0.40 — readable, clearly secondary */
  cursor: pointer;
  padding: 6px 4px;
  transition: color 0.2s ease;
}

.mobile-menu__lang-btn.is-active {
  color: #ffffff; /* solid white — unambiguous active state */
}

/* Phone link — transparent pill with thin white border only */
.header__phone {
  display: none;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text-light);
  white-space: nowrap;
  cursor: pointer;
  position: relative;  /* needed for ::before diagonal border */

  /* Glass pill */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;        /* border replaced by ::before diagonal-fade */
  border-radius: 9999px;
  padding: 8px 20px;
  color: #ffffff;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Dual disconnected highlight — left cap (top arc) + right cap (bottom arc).
   Corners at TR and BL are fully transparent — matches the pill header and dock. */
.header__phone::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  padding: 1px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 1.00)  0%,
    rgba(255, 255, 255, 0)    40%,
    rgba(255, 255, 255, 0)    60%,
    rgba(255, 255, 255, 1.00) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  transition: opacity 0.3s ease;
}

/* Hover — solid white fill, dark text */
.header__phone:hover {
  background: #ffffff;
  color: #000000;
}
.header__phone:hover::before {
  opacity: 0; /* border dissolves as the fill takes over */
}

/* Keyboard focus only */
.header__phone:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.70);
  outline-offset: 4px;
}

.header__phone svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .header__phone {
    display: flex;
  }
}

/* Light mode phone */
.site-header.is-light .header__phone {
  color: var(--color-text);
}

/* ----------------------------------------------------------
   BOOK NOW — sticky CTA button (hidden until header scrolled)
   ---------------------------------------------------------- */

.header__book-btn {
  display: none; /* hidden by default, revealed on scroll */
  align-items: center;
  gap: 0.5rem;
  background: #0d0d0d;
  color: #ffffff;
  border-radius: 9999px;
  padding: 0.55rem 1.25rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  /* Start invisible — animate in */
  opacity: 0;
  transform: translateY(-6px);
}

/* Reveal when header becomes sticky */
.site-header.is-scrolled .header__book-btn {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  animation: bookBtnFadeIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes bookBtnFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.header__book-btn:hover {
  background: #2a2a2a;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.header__book-btn:active {
  transform: scale(0.97);
}

/* Pulsing green online dot */
.header__book-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  position: relative;
}

.header__book-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.35);
  animation: dotPulse 1.8s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  60%       { transform: scale(1.9); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .header__book-dot::after { animation: none; }
}

/* Hide on mobile — only show on tablet and up */
@media (max-width: 767px) {
  .header__book-btn {
    display: none !important;
  }
}

/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: var(--space-2);
  background: none;
  border: none;
  cursor: pointer;
  z-index: var(--z-raised);
  flex-shrink: 0;
  border-radius: var(--radius-sm);
}

.hamburger:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger__line {
  display: block;
  height: 1.5px;
  background-color: var(--color-text-light);
  border-radius: 2px;
  transition:
    transform var(--dur-normal) var(--ease),
    opacity   var(--dur-normal) var(--ease),
    width     var(--dur-normal) var(--ease);
}

.hamburger__line:nth-child(1) { width: 22px; }
.hamburger__line:nth-child(2) { width: 16px; }
.hamburger__line:nth-child(3) { width: 22px; }

/* Light mode hamburger lines */
.site-header.is-light .hamburger__line {
  background-color: var(--color-text);
}

/* Hamburger open state — X shape */
.hamburger.is-open .hamburger__line:nth-child(1) {
  width: 22px;
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open .hamburger__line:nth-child(3) {
  width: 22px;
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ==========================================================
   MOBILE MENU OVERLAY
   ========================================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-sticky) - 1);
  /* Glassmorphism: frosted dark glass over the hero photo */
  background: rgba(10, 12, 16, 0.78);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border: none;   /* full-screen, no border needed */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-8);
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity     var(--dur-normal) var(--ease),
    visibility  var(--dur-normal) var(--ease),
    transform   var(--dur-normal) var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
}

.mobile-menu__link {
  font-family: var(--font-sans);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: #ffffff;          /* solid white — crisp against dark glass overlay */
  opacity: 1;              /* was 0.85 — now full opacity for maximum contrast */
  padding: var(--space-3) var(--space-6);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

.mobile-menu__link:hover {
  color: var(--color-accent);
}

.mobile-menu__phone {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-base);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92); /* near-white — readable without being harsh */
  text-decoration: none;
  padding: var(--space-4) var(--space-8);
  border: 1px solid rgba(255, 255, 255, 0.28); /* raised from 0.15 — visible on dark glass */
  border-radius: var(--radius-full);
  transition: color       var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}

.mobile-menu__phone:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.mobile-menu__phone svg {
  width: 1rem;
  height: 1rem;
}


/* ==========================================================
   HERO
   ========================================================== */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-brand);
}

/* Background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Vertical offset shows car bonnet + airport sign zone */
  object-position: center 35%;
}

/* Overlay: tuned for the dark car-interior photo.
   Top stays light so the vehicle and airport details stay visible;
   left side adds just enough contrast for the headline;
   bottom deepens for the glass booking form.                     */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(6, 7, 9, 0.22)  0%,
      rgba(6, 7, 9, 0.32) 35%,
      rgba(6, 7, 9, 0.52) 70%,
      rgba(6, 7, 9, 0.65) 100%
    ),
    linear-gradient(to right,
      rgba(6, 7, 9, 0.45)  0%,
      rgba(6, 7, 9, 0.08) 50%,
      rgba(6, 7, 9, 0.00) 100%
    );
}

/* Mobile: heavier top veil kills the airport-sign clash; lightens toward bottom
   so the glass form doesn't need overlay support               */
@media (max-width: 639px) {
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(6, 7, 9, 0.75)  0%,   /* smothers "AÉROPORT NANTES ATLANTIQUE" lettering */
      rgba(6, 7, 9, 0.45) 50%,   /* mid — headline zone, still punchy contrast */
      rgba(6, 7, 9, 0.30) 100%   /* bottom — glass form supplies its own backdrop */
    );
  }
}

/* Content wrapper — fills hero height, content at bottom */
.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Push content below fixed header */
  padding-top: calc(3rem + 3rem);   /* header ~48px + breathing space */
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .hero__inner {
    padding-top: calc(5rem + 3rem); /* header 80px + space */
    justify-content: flex-end;
    padding-bottom: clamp(3rem, 5vw, 4.5rem);
  }
}

/* Text block (H1) — full container width, no tight column */
.hero__text {
  max-width: 72rem;
  margin-bottom: var(--space-5);
}

.hero__title {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 1.8rem + 2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-light);
  margin-bottom: var(--space-5);
  letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
  .hero__title {
    white-space: nowrap;
  }
}

/* Mobile: editorial scale — smaller, tighter, more air around it */
@media (max-width: 639px) {
  .hero__inner {
    gap: var(--space-5);         /* relax the stack: text → form → badges */
  }

  .hero__text {
    padding-top: 2rem;           /* mt-8: deliberate gap above the headline */
    margin-bottom: 1.5rem;       /* mb-6: clean separation before the booking form */
    text-align: center;          /* centre the headline block on mobile */
  }

  .hero__title {
    /* Scales with viewport so text never wraps on any phone width */
    font-size: clamp(1.1rem, 5.5vw, 1.875rem);
    line-height: 1.25;
    letter-spacing: -0.025em;
    margin-bottom: 0;
    text-align: center;
    white-space: nowrap;          /* prevent line-break on mobile */
  }
}

.hero__subtitle {
  font-size: var(--fs-lg);
  line-height: var(--lh-normal);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
}

@media (min-width: 1024px) {
  .hero__subtitle {
    white-space: nowrap;
  }
}


/* ----------------------------------------------------------
   HERO BOOKING FORM
   Glass border comes from .glass.glass--card utility class.
   ---------------------------------------------------------- */

.hero-form {
  padding: var(--space-5) var(--space-6);
  position: relative;
  /* Smoked glass — neutral black, no warm tint */
  background: rgba(15, 15, 15, 0.55);
  /* Border removed — replaced by pseudo-element diagonal fade */
  border: none;
  box-shadow: none;
}

/* Dual disconnected highlight — top arc lit from TL, bottom arc lit from BR.
   Top-right and bottom-left corners remain completely transparent. */
.hero-form::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  padding: 1px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 1.00)  0%,
    rgba(255, 255, 255, 0)    40%,
    rgba(255, 255, 255, 0)    60%,
    rgba(255, 255, 255, 1.00) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

/* Tab strip — "One way / By the hour"
   Override the .glass solid border in favour of the dual-arc pseudo-element below */
.hero-form__tabs {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-5);
  padding: 3px;
  width: fit-content;
  position: relative;   /* stacking context for ::before */
  border: none !important; /* kill the .glass hairline — ::before takes over */
}

/* Dual disconnected highlight on the pill tab strip — identical technique to
   header, phone button, form and dock. At 160deg on this narrow-tall pill the
   stops land at: left-cap (9 o'clock) → top arc → fade out | fade in → bottom arc → right-cap (3 o'clock) */
.hero-form__tabs::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;   /* inherits border-radius-full from .glass--pill */
  pointer-events: none;
  z-index: 0;
  padding: 1px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 1.00)  0%,
    rgba(255, 255, 255, 0)    40%,
    rgba(255, 255, 255, 0)    60%,
    rgba(255, 255, 255, 1.00) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.hero-form__tab {
  padding: 0.38rem 1.15rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.60);
  cursor: pointer;
  min-height: 32px;
  transition:
    background-color var(--dur-fast) var(--ease),
    color            var(--dur-fast) var(--ease);
}

.hero-form__tab.is-active {
  background-color: #ffffff;
  color: #000000;
}

.hero-form__tab:not(.is-active):hover {
  color: #ffffff;
}

/* Fields row */
.hero-form__fields {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 768px) {
  .hero-form__fields {
    flex-direction: row;
    align-items: flex-end;
    gap: 0;
  }
}

/* Individual field */
.hero-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  flex: 1;
  padding: var(--space-2) 0 var(--space-3);
}

/* Vertical separator between fields on desktop */
@media (min-width: 768px) {
  .hero-form__field + .hero-form__field {
    padding-left: var(--space-5);
    margin-left: var(--space-5);
    border-left: 1px solid rgba(255, 255, 255, 0.70);
  }
}

/* Mobile: spacing between fields — no border-top (input's border-bottom
   already serves as the single divider; border-top caused double lines) */
@media (max-width: 767px) {
  .hero-form__field + .hero-form__field {
    padding-top: var(--space-3);
  }

  /* Slightly lift input underline opacity on mobile for crisp single line */
  .hero-form__input {
    border-bottom-color: rgba(255, 255, 255, 0.30);
  }
}

.hero-form__field--narrow {
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .hero-form__field--narrow {
    min-width: 8rem;
  }
}

/* Toggle fields for tab switching */
.hero-form__field[hidden] {
  display: none;
}

/* Label — uppercase caption above input */
.hero-form__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: block;
}

/* Input wrapper — positions icon inside the field */
.hero-form__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-form__input-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);  /* true vertical center regardless of input height */
  width: 0.9rem;
  height: 0.9rem;
  color: rgba(255, 255, 255, 0.60);
  flex-shrink: 0;
  pointer-events: none;
}

.hero-form__input-wrap .hero-form__input {
  padding-left: 1.4rem;
}

/* Input — underline style, no box */
.hero-form__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  color: var(--color-text-light);
  font-size: var(--fs-sm);
  font-weight: 400;
  font-family: var(--font-sans);
  padding: 0.45rem 0 0.4rem;
  min-height: 44px;
  color-scheme: dark;
  transition: border-bottom-color var(--dur-fast) var(--ease);
}

.hero-form__input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.hero-form__input:focus {
  outline: none;
  border-bottom-color: #ffffff;
}

/* Brighten vertical divider on desktop when adjacent field is focused */
.hero-form__field:focus-within + .hero-form__field {
  border-left-color: rgba(255, 255, 255, 1);
}

/* Brighten icon when field is focused */
.hero-form__input-wrap:focus-within .hero-form__input-icon {
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.3s ease;
}

/* Date & time inputs — hide browser's default inner icon, keep our custom one */
.hero-form__input[type="date"]::-webkit-calendar-picker-indicator,
.hero-form__input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 100%;
  position: absolute;
  inset: 0;
  cursor: pointer;
}

/* Submit button — white bg, black text + premium micro-interactions */
.hero-form__submit .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transition: all 0.3s ease;
}

.hero-form__submit .btn:hover {
  background-color: #F3F4F6;
  border-color: #F3F4F6;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.hero-form__submit .btn:active {
  transform: scale(0.98);
}

/* Online dot — mirrors .header__book-dot in the sticky header */
.hero-form__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  position: relative;
  display: inline-block;
}

.hero-form__dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.35);
  animation: dotPulse 1.8s ease-in-out infinite;
}

/* Submit area */
.hero-form__submit {
  flex-shrink: 0;
  padding-top: var(--space-4);
}

@media (min-width: 768px) {
  .hero-form__submit {
    padding-top: 0;
    padding-left: var(--space-5);
    align-self: flex-end;
    border-left: 1px solid rgba(255, 255, 255, 0.70);
    margin-left: var(--space-5);
  }
}


/* ==========================================================
   TRUST BANNER — thin authority strip below hero
   ========================================================== */

/* Dark theme — sits flush between Hero and Services (#0d0d0d) */


/* ==========================================================
   SERVICES — editorial full-bleed tile grid
   ========================================================== */

.services {
  background: #0d0d0d;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.services .container {
  max-width: 72rem;
}

/* Section header */
.services__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.services__title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

/* Grid — stacked on mobile, 3 equal columns on desktop */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Editorial Tile ── */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;          /* tightened from 24px — disciplined, not bubbly */
  background: #1a1a1a;          /* fallback while image loads */
  /* Landscape on mobile, portrait (editorial) on desktop */
  aspect-ratio: 4 / 3;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

@media (min-width: 768px) {
  .service-card {
    aspect-ratio: 3 / 4;
  }
}

/* ── Background image layer ── */
.service-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.service-card:hover .service-card__img {
  transform: scale(1.05);
}

/* ── Gradient overlays — two layers for animated transition ──
   ::before = strong base gradient (default)
   ::after  = softened gradient (fades in on hover)            */
.service-card::before,
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.7s ease;
  border-radius: inherit;
}

/* Base — text-safe; gradient now extends 88% up the card
   so taller padding never escapes into the bright image zone */
.service-card::before {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.72) 28%,
    rgba(0, 0, 0, 0.44) 55%,
    rgba(0, 0, 0, 0.10) 80%,
    transparent 100%
  );
  opacity: 1;
}

/* Hover — softer but still tall enough to protect all text */
.service-card::after {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.48) 28%,
    rgba(0, 0, 0, 0.20) 55%,
    rgba(0, 0, 0, 0.03) 80%,
    transparent 100%
  );
  opacity: 0;
}

.service-card:hover::before { opacity: 0; }
.service-card:hover::after  { opacity: 1; }

/* ── Dual disconnected highlight — matches the system-wide 160deg standard ── */
.service-card__border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
  padding: 1px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 1.00)  0%,
    rgba(255, 255, 255, 0)    40%,
    rgba(255, 255, 255, 0)    60%,
    rgba(255, 255, 255, 1.00) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

/* ── Text content — positioned bottom-left ── */
.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  /* Generous breathing room: sides & bottom use clamp for
     proportional scaling; gap removed in favour of per-element margins */
  padding:
    1.5rem                          /* top (gradient handles visual top) */
    clamp(1.75rem, 6%, 2.5rem)      /* sides */
    clamp(2rem,    6%, 2.75rem);    /* bottom */
  display: flex;
  flex-direction: column;
  gap: 0;                           /* controlled individually per element */
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Entire content block lifts subtly on hover */
.service-card:hover .service-card__content {
  transform: translateY(-8px);
}

/* Overline — widest tracking for a true luxury kicker */
.service-card__overline {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.55rem;
  /* Tight two-layer shadow: inner crisp edge + outer soft halo */
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.90),
    0 2px 10px rgba(0, 0, 0, 0.70);
}

/* Title — explicit bottom margin separates it from the body copy */
.service-card__title {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.9rem;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.70),
    0 3px 12px rgba(0, 0, 0, 0.45);
}

/* Description — 3-line clamp keeps all cards visually uniform */
.service-card__text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
}

/* "Book now →" — always visible, dimmed; brightens on hover */
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  margin-top: 0.9rem;       /* clear visual break above the CTA */
  opacity: 0.70;
  transition:
    opacity 0.35s ease,
    gap     0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card__link svg {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* On tile hover: CTA fully opaque, arrow slides 5 px right */
.service-card:hover .service-card__link {
  opacity: 1;
  gap: 0.75rem;
}

.service-card:hover .service-card__link svg {
  transform: translateX(5px);
}

/* Reduced motion — freeze all transitions & keep base gradient */
@media (prefers-reduced-motion: reduce) {
  .service-card__img,
  .service-card::before,
  .service-card::after,
  .service-card__content,
  .service-card__link,
  .service-card__link svg {
    transition: none;
    animation: none;
  }
  .service-card::before { opacity: 1; }
  .service-card::after  { opacity: 0; }
  .service-card:hover .service-card__img     { transform: none; }
  .service-card:hover .service-card__content { transform: none; }
  .service-card__link { opacity: 0.70; }
}

/* ==========================================================
   FEATURED ROUTES — minimalist typographic list
   Light section breaks up adjacent dark blocks.
   ========================================================== */

.routes {
  background: #fafaf9;   /* matches .testimonials */
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

/* ── Header — editorial split layout ─────────────────────── */

.routes__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.routes__header-left {
  flex-shrink: 0;
}

.routes__overline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  margin: 0 0 0.65rem;
}

.routes__title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.routes__subtitle {
  font-size: var(--fs-sm);
  color: rgba(0, 0, 0, 0.42);
  line-height: 1.70;
  max-width: 26rem;
  margin: 0;
  text-align: right;
}

@media (max-width: 767px) {
  .routes__header   { flex-direction: column; align-items: flex-start; }
  .routes__subtitle { text-align: left; max-width: 100%; }
}

/* ── Two-column destination list ──────────────────────────── */

.routes__list {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .routes__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(2rem, 5vw, 4rem);
  }
}

/* ── Individual row ───────────────────────────────────────── */

.route-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.18s ease;
}

/* Mobile: larger vertical tap target (≥44 px per Apple HIG) */
@media (max-width: 639px) {
  .route-row {
    padding: 1.5rem 0;
    min-height: 52px;
  }
}

/* Left: origin + arrow + destination */
.route-row__left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  flex: 1;
}

.route-row__origin {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);   /* was 0.35 — now ~text-gray-500 */
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.route-row__arrow-icon {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  color: rgba(0, 0, 0, 0.42);   /* was 0.20 — now clearly visible */
}

.route-row__dest {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0d0d0d;
  letter-spacing: -0.015em;
  white-space: nowrap;
  transition: color 0.18s ease;
}

/* Right: travel time + animated chevron */
.route-row__right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.route-row__time {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);   /* was 0.38 — now ~text-gray-500 */
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.route-row__chevron {
  width: 1rem;
  height: 1rem;
  color: rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    color     0.18s ease;
}

/* Hover state — chevron slides right, destination brightens */
.route-row:hover .route-row__chevron {
  transform: translateX(5px);
  color: #0d0d0d;
}

.route-row:hover .route-row__dest {
  color: #000000;
}

/* ==========================================================
   FLEET — tabbed vehicle showcase
   ========================================================== */

.fleet {
  background: #fafaf9;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.fleet__container {
  max-width: 72rem;
}

.fleet__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.fleet__title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

/* Tab navigation — Apple-style segmented control */
.fleet__tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  width: fit-content;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  padding: 4px;
}

.fleet__tab {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 9999px;
  padding: 0.55rem 1.35rem;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: #555555;
  cursor: pointer;
  letter-spacing: 0.01em;
  white-space: nowrap;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.fleet__tab:hover {
  color: #1a1a1a;
}

.fleet__tab.is-active {
  background: #ffffff;
  color: #0d0d0d;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10), 0 0 0 0.5px rgba(0, 0, 0, 0.06);
}

/* Mobile: 4 equal quarters filling the full pill width */
@media (max-width: 768px) {
  .fleet__tabs {
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
    justify-content: stretch;
    flex-wrap: nowrap;
  }
  .fleet__tab {
    flex: 1 1 0;
    text-align: center;
    padding: 0.6rem 0.4rem;
    font-size: 0.75rem;
    white-space: nowrap;
    min-height: 44px;
  }
}

/* Panels */
.fleet__panel {
  display: none;
}

.fleet__panel.is-active {
  display: block;
}

/* ── Exit: current panel slides left and fades out ── */
.fleet__panel--exit {
  display: block !important;
  pointer-events: none;
  animation: fleetExit 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fleetExit {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-16px); }
}

/* ── Enter: new panel slides in from right and fades in ── */
.fleet__panel--enter {
  animation: fleetEnter 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fleetEnter {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Split layout */
.fleet__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .fleet__split {
    grid-template-columns: 55% 1fr;
  }
}

/* ── Showroom image container — built for transparent PNG cars ── */
.fleet__img-wrap {
  position: relative;
  border-radius: 12px;          /* tightened from 20px */
  overflow: hidden;
  aspect-ratio: 16 / 10;
  /* Multi-layer studio backdrop */
  background:
    /* Soft spotlight from above */
    radial-gradient(ellipse 60% 50% at 50% 20%,
      rgba(255, 255, 255, 0.55) 0%,
      transparent 70%
    ),
    /* Warm studio floor */
    radial-gradient(ellipse 100% 80% at 50% 100%,
      #dddbd6 0%,
      #e8e6e1 40%,
      #f0eeea 100%
    );
  /* No hard border — clean showroom feel */
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.04),
    0 2px 24px rgba(0, 0, 0, 0.06);
}

/* Ground shadow ellipse — "grounds" the floating PNG car */
.fleet__img-wrap::before {
  content: '';
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  height: 10%;
  background: radial-gradient(ellipse at center,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.06) 50%,
    transparent 75%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  /* Animate with the panel */
  transition: opacity 0.3s ease;
}

/* Subtle vignette rim — keeps focus on the car */
.fleet__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 85% at 50% 50%,
    transparent 50%,
    rgba(0, 0, 0, 0.055) 100%
  );
  pointer-events: none;
  z-index: 3;
}

.fleet__img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  /* contain = PNG transparency respected; padding gives breathing room */
  object-fit: contain;
  padding: 5% 4% 8%; /* top / sides / bottom — room for ground shadow */
  display: block;
  transition: transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Tesla sits higher in its PNG canvas — push it down to align wheels */
.fleet__img--tesla {
  transform: translateY(6%);
}

/* Slow showroom hover drift */
.fleet__img-wrap:hover .fleet__img {
  transform: scale(1.025) translateY(-3px);
}

/* Vehicle details */
.fleet__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.fleet__vehicle-class {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.fleet__vehicle-name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.fleet__vehicle-name span {
  font-weight: 400;
  color: #9a9a9a;
  font-size: 0.55em; /* smaller than model name — clearly secondary */
}

.fleet__vehicle-desc {
  font-size: var(--fs-sm);
  color: #6b6b6b;
  line-height: 1.8;
}

/* Specs icon grid */
.fleet__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

@media (max-width: 480px) {
  .fleet__specs {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fleet__spec {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.fleet__spec svg {
  width: 1.1rem;
  height: 1.1rem;
  color: #111111;
  stroke-width: 1.75; /* thicker — solid, premium, not fragile */
  flex-shrink: 0;
}

.fleet__spec span {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: #2a2a2a;
  line-height: 1.3;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Ghost → solid CTA button */
.fleet__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #0d0d0d;
  background: #ffffff;
  border: 1.5px solid #0d0d0d;
  border-radius: var(--radius-full);
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  align-self: flex-start;
  transition:
    background  0.3s cubic-bezier(0.22, 1, 0.36, 1),
    color       0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow  0.3s ease,
    transform   0.2s ease;
}

.fleet__cta svg {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Invert — solid dark fill, white text, arrow moves */
.fleet__cta:hover {
  background: #0d0d0d;
  border-color: #0d0d0d;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.fleet__cta:hover svg {
  transform: translateX(4px);
}

.fleet__cta:active {
  transform: scale(0.97);
}

@media (prefers-reduced-motion: reduce) {
  .fleet__panel.is-active .fleet__img-wrap,
  .fleet__panel.is-active .fleet__details {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .fleet__img,
  .fleet__cta {
    transition: none;
  }
}

/* ==========================================================
   WHY CHOOSE US — dark cinematic section
   ========================================================== */

.why {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8rem) 0;
}

/* Background image */
.why__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Dark overlay — bumped base to 0.72 so bright image spots
   (window, bottle highlights) never compete with text          */
.why__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* base uniform layer — neutralises all bright hot-spots */
    linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.75)
    ),
    /* directional layer — heavier at bottom where pillars sit */
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.10) 0%,
      rgba(0, 0, 0, 0.35) 35%,
      rgba(0, 0, 0, 0.60) 65%,
      rgba(0, 0, 0, 0.75) 100%
    );
}

/* Content */
.why__inner {
  position: relative;
  z-index: 2;
}

/* Header */
.why__header {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.why__title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--space-5);
}

.why__subtitle {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  font-weight: 400;
}

/* Grid */
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 768px) {
  .why__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

/* Pillar — flat, no bg, no border */
.why__pillar {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* Icon */
.why__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #E5B869;
  flex-shrink: 0;
}

.why__icon svg {
  width: 2.75rem;
  height: 2.75rem;
  stroke-width: 1.25;
  display: block;
}

.why__pillar-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E5B869;
  line-height: 1.4;
}

.why__pillar-text {
  font-size: var(--fs-sm);
  color: #E0E0E0;
  line-height: 1.85;
  font-weight: 400;
}

/* ==========================================================
   ONBOARD COMFORT — flat amenities grid
   ========================================================== */

.comfort {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.comfort__container {
  max-width: 56rem; /* narrower — keeps grid tight and elegant */
}

.comfort__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.comfort__overline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: var(--space-3);
}

.comfort__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

/* 4-col grid */
.comfort__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}

@media (min-width: 640px) {
  .comfort__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Individual amenity item */
.comfort__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  cursor: default;
}

.comfort__icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #3a3a3a;
  transition: transform 0.3s ease, color 0.3s ease;
}

.comfort__icon svg {
  width: 100%;
  height: 100%;
  /* stroke-width set per-icon in HTML for precise control */
}

.comfort__item:hover .comfort__icon {
  transform: translateY(-5px);
  color: #0d0d0d;
}

.comfort__label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: #3a3a3a;
  line-height: 1.5;
}

.comfort__label small {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 400;
  color: #6b6b6b; /* darker — was #9a9a9a, now text-gray-500 equivalent */
  margin-top: 2px;
}


/* ==========================================================
   TESTIMONIALS — infinite marquee
   ========================================================== */

.testimonials {
  background: #fafaf9;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  overflow: hidden;
}

.testimonials__header-wrap {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.testimonials__header {
  max-width: 36rem;
}

.testimonials__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--space-3);
}

.testimonials__subtitle {
  font-size: var(--fs-sm);
  color: #9a9a9a;
  line-height: 1.6;
}

/* Marquee wrapper — clips overflow */
.testimonials__marquee-wrap {
  overflow: hidden;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

/* Scrolling track */
.testimonials__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.testimonials__track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials__track {
    animation: none;
  }
}

/* Review card */
.tcard {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 10px;          /* tightened from 14px */
  padding: 1.75rem 2rem;
  width: 22rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  /* shadow-sm — lifts the card cleanly off the bg without drama */
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Mobile: narrower cards so 1.5 cards are visible, stronger edge fade */
@media (max-width: 639px) {
  .tcard {
    width: 17rem;
    padding: 1.4rem 1.5rem;
  }
  .testimonials__marquee-wrap {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  }
  .testimonials__track {
    gap: 1rem;
  }
}

/* ── Stars + Verified — stacked column ── */
.tcard__top {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.tcard__stars {
  color: #E5B869;
  font-size: 0.85rem;
  letter-spacing: 2px;
  line-height: 1;
}

/* Verified Booking badge */
.tcard__verified {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.tcard__verified svg {
  width: 0.7rem;
  height: 0.7rem;
  color: #22c55e;     /* green — trustworthy, not alarming */
  flex-shrink: 0;
}

.tcard__verified-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: #9ca3af;     /* gray-400 — subtle, doesn't shout */
  letter-spacing: 0.025em;
}

/* Quote */
.tcard__quote {
  font-size: var(--fs-sm);
  color: #3a3a3a;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

/* ── Author footer: avatar + name/role ── */
.tcard__author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding-top: var(--space-3);
  border-top: 1px solid #efefed;
}

/* Circular initials avatar */
.tcard__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #f3f4f6;    /* gray-100 */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #374151;          /* gray-700 */
  flex-shrink: 0;
  user-select: none;
}

/* Name + role stacked beside avatar */
.tcard__author-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;            /* allows text-overflow to work */
}

.tcard__name {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: #0d0d0d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tcard__role {
  font-size: var(--fs-xs);
  color: #9a9a9a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ----------------------------------------------------------
   REVEAL ANIMATION — fade + slide up on scroll
   ---------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.7s ease var(--reveal-delay, 0s),
    transform 0.7s ease var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 767px) {
  .hero-form__submit .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ----------------------------------------------------------
   HERO TRUST MARKERS
   ---------------------------------------------------------- */

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4) var(--space-5);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;             /* matches .trust-banner__item gap exactly → text x-axis aligned */
  font-size: var(--fs-sm);
  font-weight: 500;
  color: #ffffff;
}

.hero__trust-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Separator dots — desktop only */
@media (min-width: 640px) {
  .hero__trust-item + .hero__trust-item::before {
    content: '·';
    margin-right: var(--space-5);
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
  }
}

/* Mobile: strict 2-column grid, no separators */
@media (max-width: 639px) {
  .hero__trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3) var(--space-4);
  }

  .hero__trust-item {
    align-items: center;
    text-align: left;
  }
}


/* ----------------------------------------------------------
   SCROLL HINT (desktop only)
   ---------------------------------------------------------- */

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 768px) {
  .hero__scroll-hint {
    display: flex;
  }
}

.hero__scroll-hint svg {
  animation: bounce 2.2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-hint svg { animation: none; }
}


/* ==========================================================
   FAQ SECTION — two-column layout
   ========================================================== */

.faq-section {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

/* Left column — wraps header + accordion list */
.faq-section__left {
  display: flex;
  flex-direction: column;
}

/* Header sits inside the left column */
.faq-section__header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.faq-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1.15;
  margin: 0 0 var(--space-3) 0;
}

.faq-section__subtitle {
  font-size: var(--fs-base);
  color: #7a7a7a;
  margin: 0;
}

/* Two-column body */
.faq-section__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

@media (min-width: 900px) {
  .faq-section__body {
    grid-template-columns: 1fr 0.68fr;
    align-items: stretch; /* both columns same height so image fills left height */
  }
}

/* ── LEFT: FAQ list ── */
.faq-section__list {
  border-top: 1px solid #efefed;
}

/* Individual item */
.faq-item {
  border-bottom: 1px solid #efefed;
}

/* Question button */
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  background: none;
  border: none;
  padding: clamp(1.1rem, 2.5vw, 1.4rem) 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: clamp(var(--fs-base), 1.6vw, var(--fs-lg));
  font-weight: 600;
  color: #0d0d0d;
  transition: color 0.2s ease;
}

/* Mobile: keep question at base size with a tight leading */
@media (max-width: 639px) {
  .faq-item__question {
    font-size: var(--fs-base);
    line-height: 1.35;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.faq-item__question:hover {
  color: var(--color-accent);
}

/* Plus / × icon — rotates 45 ° to form × when open */
.faq-item__chevron {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  color: #9a9a9a;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    color     0.2s ease;
}

/* Rotate the + into a × */
.faq-item.is-open .faq-item__chevron {
  transform: rotate(45deg);
  color: #0d0d0d;
}

/* Active question — weight bump makes open item visually anchor the layout */
.faq-item.is-open .faq-item__question {
  color: #000000;
  font-weight: 700;
}

/* Suppress accent-hover on already-open items — avoid colour conflict */
.faq-item.is-open .faq-item__question:hover {
  color: #000000;
}

/* Answer — smooth height via CSS grid rows */
.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer-inner {
  overflow: hidden;
}

.faq-item__answer-inner p {
  padding-bottom: clamp(1rem, 2.5vw, 1.5rem);
  font-size: var(--fs-base);
  line-height: 1.75;
  color: #5a5a5a;
  margin: 0;
}

/* ── RIGHT: Premium visual ── */
.faq-section__visual {
  order: 1; /* below accordion on mobile */
}

@media (min-width: 900px) {
  .faq-section__visual {
    order: 0;
    min-height: 0;   /* prevent img intrinsic height from expanding the grid row */
    overflow: hidden;
  }
}

/* Wrapper — clips image + holds glass panel */
.faq-visual {
  position: relative;
  border-radius: 0.75rem;       /* tightened from 1.5rem */
  overflow: hidden;
  background: #0d0d0d;
  /* mobile: compact landscape */
  aspect-ratio: 4 / 3;
}

@media (min-width: 900px) {
  .faq-visual {
    aspect-ratio: unset;
    height: 100%;     /* fill the grid cell — grid row height = FAQ list height */
    min-height: 0;
  }
}

/* Image — absolutely positioned so it never drives the container/grid height */
.faq-visual__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 8s ease;
}

.faq-visual:hover .faq-visual__img {
  transform: scale(1.04);
}

/* Gradient veil — light mid-veil only, stops before glass zone */
.faq-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 45%,
    rgba(0, 0, 0, 0.18) 70%,
    rgba(0, 0, 0, 0.28) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ── Frosted glass widget — flush bottom ── */
.faq-visual__glass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1rem 1.5rem;
  border-radius: 0 0 0.75rem 0.75rem; /* matches parent faq-visual tightening */
  /* true frosted glass — light tint so blur shows through */
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.20);
  /* slide-up on scroll-reveal */
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.3s,
              opacity   0.55s ease 0.3s;
}

.faq-section__visual.is-visible .faq-visual__glass {
  transform: translateY(0);
  opacity: 1;
}

/* Two-row compact layout */
.faq-visual__overline {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.faq-visual__text {
  font-size: var(--fs-xs);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .faq-item__answer  { transition: none; }
  /* Show minus (−) immediately — skip the rotation animation */
  .faq-item__chevron { transition: none; }
  .faq-item.is-open .faq-item__chevron { transform: rotate(45deg); }
  .faq-visual__img   { transition: none; }
  .faq-visual__glass {
    transition: none;
    opacity: 1;
    transform: none;
  }
}


/* ==========================================================
   CTA FINAL SECTION
   ========================================================== */

.cta-final {
  background: #0a0a0a;
  padding: clamp(7rem, 14vw, 11rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Three-layer radial depth — inner bright core, mid warm ring, outer halo */
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80rem;
  height: 40rem;
  background:
    /* tight bright core — stops the "black hole" void */
    radial-gradient(ellipse 35% 40% at 50% 50%,
      rgba(255, 255, 255, 0.055) 0%,
      transparent 65%),
    /* mid warm ring */
    radial-gradient(ellipse 62% 62% at 50% 50%,
      rgba(169, 149, 119, 0.09) 0%,
      transparent 75%),
    /* outer diffuse halo */
    radial-gradient(ellipse 95% 95% at 50% 50%,
      rgba(169, 149, 119, 0.04) 0%,
      transparent 100%);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.cta-final__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.12;
  max-width: 28rem;
  margin: 0;
}

.cta-final__sub {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.55);
  max-width: 26rem;       /* tighter width forces balanced line breaks */
  line-height: 1.7;
  margin: 0;
  text-wrap: balance;     /* native orphan prevention — Chrome 114+, Safari 17.5+ */
}

/* Primary button — white pill, enlarged horizontal padding */
.cta-final__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: #ffffff;
  color: #0a0a0a;
  border: none;
  border-radius: var(--radius-full);
  padding: 0.95rem 3rem;    /* px-12 equivalent — more substantial presence */
  font-size: var(--fs-base);
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    background   0.3s ease,
    transform    0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow   0.3s ease;
}

.cta-final__btn:hover {
  background: #f5f5f5;
  /* scale-up + layered glow: inner ring + outer diffuse halo */
  transform: scale(1.04) translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.20),
    0 6px 24px rgba(255, 255, 255, 0.14),
    0 16px 48px rgba(255, 255, 255, 0.07);
}

.cta-final__btn:active {
  transform: scale(0.97);
  box-shadow: none;
}

/* Trust note */
.cta-final__note {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.30);
  letter-spacing: 0.03em;
}


/* ==========================================================
   SITE FOOTER
   ========================================================== */

.site-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

/* Main grid — 2 col on mobile, 4 col on desktop */
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(1.5rem, 4vw, 2.5rem);
  row-gap: clamp(2rem, 4vw, 2.75rem);
}

/* Brand (col 1) + Contact (col 4) span full width on mobile */
.site-footer__col--brand,
.site-footer__grid > .site-footer__col:nth-child(4) {
  grid-column: span 2;
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    column-gap: clamp(2rem, 4vw, 4rem);
    row-gap: 0;
  }

  /* Reset spans on desktop — each col occupies exactly 1 track */
  .site-footer__col--brand,
  .site-footer__grid > .site-footer__col:nth-child(4) {
    grid-column: span 1;
  }
}

/* Brand column — centred on mobile, left-aligned on desktop */
.site-footer__col--brand {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centre logo + text on mobile */
  text-align: center;
  gap: var(--space-4);
}

@media (min-width: 1024px) {
  .site-footer__col--brand {
    align-items: flex-start;
    text-align: left;
  }
}

.site-footer__logo-link {
  display: inline-block;
  text-decoration: none;
}

.site-footer__logo {
  height: 5rem;
  width: auto;
  /* Render as pure white monochrome against the dark footer */
  filter: brightness(0) invert(1);
}

.site-footer__tagline {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  max-width: 26rem; /* comfortable reading width centred on mobile */
}

/* Social icons — wider gap for touch targets and visual breathing room */
.site-footer__social {
  display: flex;
  gap: var(--space-5);   /* was space-3 (~12px) → space-5 (~20px) */
  margin-top: var(--space-2);
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.site-footer__social-link:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.site-footer__social-link svg {
  width: 1rem;
  height: 1rem;
}

/* Nav columns */
.site-footer__col-title {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 var(--space-4) 0;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.site-footer__link {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: #ffffff;
}

/* Contact column specifics */
.site-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: var(--space-3);
}

.site-footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
  opacity: 1;
}

.site-footer__contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__contact-item a:hover {
  color: #ffffff;
}

/* ── Contact column: split layout on mobile ──
   Left = info (title + links), Right = social icons     */
/* Contact column */
.site-footer__col--contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 0;
}

/* Social icons: no top-margin when side-by-side */
.site-footer__col--contact .site-footer__social {
  margin-top: 0;
  flex-shrink: 0;
  flex-direction: column;
  gap: var(--space-3);
}

/* Desktop: revert to stacked column layout */
@media (min-width: 1024px) {
  .site-footer__col--contact {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .site-footer__col--contact .site-footer__social {
    margin-top: var(--space-2);
    flex-direction: row;
    gap: var(--space-5);
  }
}

/* Bottom bar */
.site-footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer__bottom-inner {
  padding-block: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-footer__copy {
  flex: 1;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.site-footer__legal {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-4);
}

.site-footer__legal-link {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.82);
}


/* ==========================================================
   GLOBAL MOBILE RHYTHM — uniform section spacing ≤639px
   ========================================================== */

@media (max-width: 639px) {

  /* ── Section vertical padding: 3rem (≈ py-12) on mobile ── */
  .comfort,
  .testimonials,
  .fleet,
  .faq-section,
  .routes {
    padding-top:    3rem;
    padding-bottom: 3rem;
  }

  /* ── Internal header gaps — proportional reduction ── */
  .testimonials__header-wrap        { margin-bottom: 1.75rem; }
  .comfort__header                  { margin-bottom: 1.5rem; }
  .faq-section__header              { margin-bottom: 1.5rem; }
  .routes__header                   { padding-bottom: 1.25rem; }
  .fleet__header                    { margin-bottom: 2rem; }

  /* ── Comfort grid: tighter gap on phone ── */
  .comfort__grid                    { gap: 1.75rem; }
}


/* ==========================================================
   MOBILE FLOATING ACTION DOCK — iOS-style fixed bottom bar
   ========================================================== */

/* Hidden on desktop */
.mobile-dock {
  display: none;
}

@media (max-width: 1023px) {
  .mobile-dock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Fixed capsule at bottom of viewport */
    position: fixed;
    bottom: 1.5rem;
    left: 1rem;
    right: 1rem;
    z-index: 180; /* above content (100), below mobile menu overlay (300) */
    /* Same smoked-glass material as .hero-form and pill header */
    background: rgba(15, 15, 15, 0.55);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    /* Border replaced by diagonal-fade pseudo-element below */
    border: none;
    border-radius: 9999px;
    box-shadow:
      0 25px 50px rgba(0, 0, 0, 0.45),
      0 8px  20px rgba(0, 0, 0, 0.28);
    padding: 0.45rem 0.45rem 0.45rem 0.9rem;
    /* Entrance animation */
    animation: dockSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
  }

  /* Dual disconnected highlight — pill's left cap lit (top line) + right cap lit (bottom line).
     TR and BL corners stay fully transparent — the "two separated arcs" effect. */
  .mobile-dock::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
    padding: 1px;
    background: linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.80)  0%,
      rgba(255, 255, 255, 0)    40%,
      rgba(255, 255, 255, 0)    60%,
      rgba(255, 255, 255, 0.80) 100%
    );
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
  }
}

@keyframes dockSlideUp {
  from { opacity: 0; transform: translateY(1.5rem); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Left/Right icon buttons ── */
.mobile-dock__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #ffffff;               /* solid white — pops on dark glass, no opacity loss */
  text-decoration: none;
  flex-shrink: 0;
  transition:
    color      0.2s ease,
    background 0.2s ease,
    transform  0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-dock__btn:hover  { color: #ffffff; background: rgba(255, 255, 255, 0.10); }
.mobile-dock__btn:active { transform: scale(0.88); }

/* ── WhatsApp button ── */
.mobile-dock__whatsapp {
  position: relative;
  color: #ffffff;
}

.mobile-dock__wa-icon {
  width: 1.3rem;
  height: 1.3rem;
  flex-shrink: 0;
}

/* Pulsing emerald online dot */
.mobile-dock__online-dot {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #22c55e;
  /* Dark halo lifts dot off the icon surface */
  box-shadow: 0 0 0 1.5px rgba(20, 20, 24, 0.70);
  animation: dockOnlinePulse 2.4s ease-in-out infinite;
}

@keyframes dockOnlinePulse {
  0%, 100% { transform: scale(1);    opacity: 1;    }
  50%       { transform: scale(1.4); opacity: 0.60; }
}

/* ── Center CTA ── */
.mobile-dock__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0a0a0a;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 0.65rem 1.65rem;
  border-radius: 9999px;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.20),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  transition:
    background 0.2s ease,
    transform  0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-dock__cta:hover  { background: #f0f0f0; }
.mobile-dock__cta:active { transform: scale(0.95); }

/* ── Scroll-to-top chevron ── */
.mobile-dock__scroll-top svg {
  width: 1.15rem;
  height: 1.15rem;
}


/* ==========================================================
   HERO FORM — Custom date & time pickers
   Replace native browser pickers with premium dark-glass UI
   ========================================================== */

/* ── Trigger button: inherits underline-input aesthetic ── */
.hf-picker-trigger {
  /* Reset button defaults */
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  /* Match .hero-form__input exactly */
  width: 100%;
  padding: 0.45rem 0 0.4rem;
  padding-left: 1.4rem;          /* icon clearance (added via .hero-form__input-wrap) */
  min-height: 44px;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55); /* placeholder tone — no value yet */
  text-align: left;
  cursor: pointer;
  transition: border-bottom-color var(--dur-fast) var(--ease),
              color              var(--dur-fast) var(--ease);
}

.hf-picker-trigger:focus {
  outline: none;
  border-bottom-color: #ffffff;
}

/* Value selected — brighten text to match filled inputs */
.hf-picker-trigger.has-value {
  color: #ffffff;
}

/* ── Shared picker shell ── */
.hf-picker {
  position: absolute;
  bottom: 15px;
  top: auto;
  left: 0;
  right: 0;
  width: auto;
  z-index: 99999;
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border: none;  /* replaced by ::before gradient */
  border-radius: 1rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 2px  8px rgba(0, 0, 0, 0.20);
  overflow: hidden;
  animation: hfPickerIn 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Gradient border — identical to .hero-form, .hero-form__tabs, and flatpickr calendar */
.hf-picker::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  padding: 1px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 1.00)  0%,
    rgba(255, 255, 255, 0)    40%,
    rgba(255, 255, 255, 0)    60%,
    rgba(255, 255, 255, 1.00) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

@keyframes hfPickerIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ==========================================================
   FLATPICKR — premium dark-glass calendar theme override
   Loaded after flatpickr.min.css so these always win
   ========================================================== */

/* Flatpickr input — clickable underline field matching form */
.hf-flatpickr {
  cursor: pointer;
}

/* ── Calendar shell ── */
.flatpickr-calendar {
  background: rgba(15, 15, 15, 0.55) !important;
  backdrop-filter: blur(12px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(120%) !important;
  border: none !important;             /* replaced by ::before gradient */
  z-index: 9999 !important;
  border-radius: 1rem !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 2px  8px rgba(0, 0, 0, 0.20) !important;
  font-family: var(--font-sans) !important;
  color: #ffffff !important;
  padding: 0.75rem !important;
  /* width set dynamically by JS to match date field — no hard-coded value */
  margin-top: 8px !important;
}

/* Gradient border — same diagonal technique as .hero-form and .hero-form__tabs:
   bright at top-left + bottom-right corners, transparent at the other two.
   Override flatpickr's own ::before (used for the arrow triangle) with !important. */
.flatpickr-calendar::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;       /* beats flatpickr's left:22px / bottom:100% */
  width: auto !important;    /* beats flatpickr's width:0  */
  height: auto !important;   /* beats flatpickr's height:0 */
  border: none !important;   /* beats flatpickr's border:solid transparent */
  margin: 0 !important;
  border-radius: inherit !important;
  pointer-events: none !important;
  z-index: 0 !important;
  padding: 1px !important;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 1.00)  0%,
    rgba(255, 255, 255, 0)    40%,
    rgba(255, 255, 255, 0)    60%,
    rgba(255, 255, 255, 1.00) 100%
  ) !important;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0) !important;
  mask-composite: exclude !important;
}

/* Hide the flatpickr ::after arrow triangle */
.flatpickr-calendar::after {
  display: none !important;
}

/* ── Month header ── */
.flatpickr-months {
  padding: 0.5rem 0.25rem 0.625rem !important;
  position: relative !important;
  align-items: center !important;
}

.flatpickr-month {
  background: transparent !important;
  color: #ffffff !important;
  height: 2.25rem !important;
  line-height: 2.25rem !important;
}

.flatpickr-current-month {
  color: #ffffff !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  padding: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  height: auto !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.25rem !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: transparent !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  border: none !important;
  outline: none !important;
}

.flatpickr-current-month input.cur-year {
  color: #ffffff !important;
  font-weight: 600 !important;
}

/* Prev / next month arrows — safely indented, generous touch target */
.flatpickr-prev-month,
.flatpickr-next-month {
  color: rgba(255, 255, 255, 0.70) !important;
  fill: rgba(255, 255, 255, 0.70) !important;
  padding: 0.375rem 0.5rem !important;
  border-radius: 0.5rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.15s, fill 0.15s !important;
  line-height: 1 !important;
}

/* Indent arrows away from the rounded calendar border */
.flatpickr-prev-month {
  left: 12px !important;
}

.flatpickr-next-month {
  right: 12px !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  color: #ffffff !important;
  fill: #ffffff !important;
  background: rgba(255, 255, 255, 0.10) !important;
}

/* Arrow SVGs — crisp white, explicit 16 × 16 px hit-friendly size */
.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  fill: inherit !important;
  width: 16px !important;
  height: 16px !important;
  display: block !important;
}

/* ── Weekday labels ── */
.flatpickr-weekdays {
  background: transparent !important;
}

span.flatpickr-weekday {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.30) !important;
  font-size: 0.625rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.07em !important;
}

/* ── Day cells ── */
.flatpickr-days {
  border: none !important;
  width: 100% !important;
}

.dayContainer {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
}

.flatpickr-day {
  color: rgba(255, 255, 255, 0.80) !important;
  border: none !important;
  border-radius: 0.5rem !important;
  font-size: 0.8125rem !important;
  max-width: 38px !important;
  height: 36px !important;
  line-height: 36px !important;
  transition: background 0.13s, color 0.13s !important;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
  background: rgba(255, 255, 255, 0.09) !important;
  border: none !important;
  color: #ffffff !important;
  outline: none !important;
}

/* Selected day — solid white capsule */
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
  background: #ffffff !important;
  border-color: transparent !important;
  color: #0d0d0d !important;
  font-weight: 700 !important;
  border-radius: 50% !important;
}

/* Today — gold accent underline */
.flatpickr-day.today {
  border-bottom: 2px solid var(--color-accent, #E5B869) !important;
  color: var(--color-accent, #E5B869) !important;
  font-weight: 600 !important;
  border-radius: 0.5rem !important;
}

.flatpickr-day.today:hover {
  background: rgba(255, 255, 255, 0.09) !important;
  color: #ffffff !important;
}

/* Disabled / past / other-month — muted elegantly */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(255, 255, 255, 0.20) !important;
  background: transparent !important;
  border: none !important;
  cursor: default !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Dropdown month options */
.flatpickr-monthDropdown-months option {
  background: #0a0a0c;
  color: #ffffff;
}


/* ── TIME LIST ── */
.hf-timepicker {
  width: auto;  /* inherits full width from .hf-picker */
  padding: 0.75rem 0.5rem;
}

.hf-timepicker__list {
  max-height: 252px;
  overflow-y: auto;
  /* Hide scrollbar — scroll still works */
  scrollbar-width: none;
}

.hf-timepicker__list::-webkit-scrollbar { display: none; }

.hf-timepicker__item {
  display: block;
  width: 100%;
  padding: 0.625rem 1rem;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.80);
  text-align: center;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}

.hf-timepicker__item:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
}

/* Selected row — solid white pill, mirrors Flatpickr selected day */
.hf-timepicker__item--selected {
  background: #ffffff;
  color: #0d0d0d;
  font-weight: 700;
  border-radius: 0.5rem;
}

.hf-timepicker__item--selected:hover {
  background: #f0f0f0;
}

/* ── Mobile: native OS pickers ── */
/* Hide native time input on desktop */
/* Native time input is never shown — custom dark-glass picker is used on all devices */
.hf-time-native {
  display: none !important;
}


/* ============================================================
   BOOKING DRAWER — Focus Mode (Vehicle Selection)
   Triggered by "View options" in the hero booking form
   ============================================================ */

.booking-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);                        /* 400 — above everything */
  background: rgba(8, 8, 10, 0.96);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity    0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform  0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ── Close button ── */
.booking-drawer__close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.booking-drawer__close:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.booking-drawer__close svg {
  width: 0.95rem;
  height: 0.95rem;
}

/* ── Split layout shell ── */
.booking-drawer__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .booking-drawer__inner {
    flex-direction: row;
  }
}

/* ══════════════════════════════════════════
   LEFT PANE — Map placeholder (40% desktop)
   ══════════════════════════════════════════ */

.booking-drawer__map {
  position: relative;
  flex-shrink: 0;
  height: 200px;              /* mobile: compact strip at top */
  background-color: #090911;
  /* Subtle perspective grid */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 44px 44px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .booking-drawer__map {
    width: 40%;
    height: 100%;             /* desktop: full height left column */
  }
}

/* Route visual — centred pin + line + pin */
.map-route {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-pin {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  flex-shrink: 0;
}

.map-pin--end {
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 0 10px rgba(169, 149, 119, 0.45);
}

.map-line {
  width: 1.5px;
  height: 64px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.50),
    rgba(255, 255, 255, 0.12)
  );
  /* Dashed via repeating-linear-gradient */
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.40) 0,
    rgba(255, 255, 255, 0.40) 4px,
    transparent 4px,
    transparent 9px
  );
}

/* Route labels */
.map-label {
  position: absolute;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.map-label--from {
  top: calc(50% - 42px);
  left: calc(50% + 14px);
}

.map-label--to {
  top: calc(50% + 32px);
  left: calc(50% + 14px);
}

/* Edge vignette — blends grid into darkness */
.map-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 35%,
    rgba(8, 8, 10, 0.65) 100%
  );
  pointer-events: none;
}

/* Bottom fade on desktop (blends into the right panel join) */
@media (min-width: 1024px) {
  .booking-drawer__map::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      transparent 70%,
      rgba(8, 8, 10, 0.55) 100%
    );
    pointer-events: none;
  }
}

/* ── Mobile: compact horizontal route bar (< 1024px) ── */
@media (max-width: 1023px) {
  /* Slim strip instead of tall block — pushes panel content up */
  .booking-drawer__map {
    height: 72px;
  }

  /* Horizontal route: pin — dashed line — pin */
  .map-route {
    flex-direction: row;
    align-items: center;
    width: 60%;
  }

  /* Dashed connector now runs left → right */
  .map-line {
    flex: 1;
    width: auto;
    height: 0;
    background: none;
    border-bottom: 1.5px dashed rgba(255, 255, 255, 0.40);
  }

  /* Labels sit above their respective pins */
  .map-label--from {
    top: 12px;
    left: 20%;
    transform: translateX(-50%);
  }
  .map-label--to {
    top: 12px;
    left: 80%;
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════
   RIGHT PANE — Vehicle list (60% desktop)
   ══════════════════════════════════════════ */

.booking-drawer__panel {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.25rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /* Thin custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}

.booking-drawer__panel::-webkit-scrollbar       { width: 3px; }
.booking-drawer__panel::-webkit-scrollbar-track  { background: transparent; }
.booking-drawer__panel::-webkit-scrollbar-thumb  {
  background: rgba(255, 255, 255, 0.10);
  border-radius: 2px;
}

@media (min-width: 768px) {
  .booking-drawer__panel {
    padding: 2rem 1.75rem 4rem;
  }
}

@media (min-width: 1024px) {
  .booking-drawer__panel {
    padding: 3rem 2.5rem 4rem;
  }
}

/* Panel header */
.booking-drawer__panel-head {
  padding-right: 3rem;   /* clear the close button on mobile */
}

@media (min-width: 1024px) {
  .booking-drawer__panel-head {
    padding-right: 0;
  }
}

.booking-drawer__step {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.4rem;
}

.booking-drawer__title {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 0.3rem;
}

.booking-drawer__subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.32);
  margin: 0;
  letter-spacing: 0.01em;
}

/* ── Cards list ── */
.booking-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* ══════════════════════════════════════════
   VEHICLE DRAWER CARD
   ══════════════════════════════════════════ */

.vd-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  padding: 1rem 1.1rem 1rem;
  cursor: pointer;
  transition:
    background     0.22s ease,
    border-color   0.22s ease,
    transform      0.18s ease;
}

.vd-card--disabled {
  opacity: 0.38;
  pointer-events: none;
  filter: grayscale(0.4);
}

.bd-capacity-row {
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1rem;
}

.vd-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.vd-card.is-selected {
  border-color: var(--color-accent);
  background: var(--color-accent-glow, rgba(229, 184, 105, 0.15));
  box-shadow: 0 0 0 1px var(--color-accent), 0 4px 24px rgba(229, 184, 105, 0.12);
}

/* ── Badge (top-left) ── */
.vd-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.8rem;
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.60);
  white-space: nowrap;
}

/* ── Card body: info + car image ── */
.vd-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.6rem;    /* clear the badge */
}

.vd-card__info {
  flex: 1;
  min-width: 0;
}

.vd-card__name {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.12rem;
  letter-spacing: -0.015em;
}

.vd-card__sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.35rem;
}

.vd-card__desc {
  font-size: 0.72rem;
  font-weight: 400;
  color: #A0A0A0;
  line-height: 1.45;
  margin: 0 0 0.65rem;
}

.vd-card__meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.vd-meta-item {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

.vd-meta-item svg {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  opacity: 0.6;
}

/* Car image thumbnail — white background for cutout PNGs */
.vd-card__img {
  flex-shrink: 0;
  width: 6.5rem;
  height: 3.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #ffffff;
  border: none;
}

.vd-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Card footer: price + button ── */
.vd-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.vd-card__price {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1;
}

.vd-card__price-from {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.vd-card__price-amount {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.025em;
}

/* ── Choose button — glass pill + dual-edge 160° lighting ── */
.vd-choose-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: none;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color      0.2s ease,
    transform  0.15s ease;
  user-select: none;
  min-height: 40px;
}

.vd-choose-btn:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  transform: translateY(-1px);
}

.vd-choose-btn:active {
  transform: translateY(0);
}

/* Dual-edge 160° gradient border — matches site-wide system */
.vd-choose-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  padding: 1px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 1.00)  0%,
    rgba(255, 255, 255, 0)    40%,
    rgba(255, 255, 255, 0)    60%,
    rgba(255, 255, 255, 1.00) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  transition: opacity 0.2s ease;
}

/* Selected state — accent fill, border dissolves */
.vd-card.is-selected .vd-choose-btn {
  background: var(--color-accent);
  color: var(--color-brand);
  font-weight: 700;
}

.vd-card.is-selected .vd-choose-btn::before {
  opacity: 0;
}


/* ============================================================
   BOOKING DRAWER — STEP 2: Passenger Details & Extras
   ============================================================ */

/* ── Progress bar ── */
.bd-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 9999px;
  margin-top: var(--space-5);
  overflow: hidden;
}

.bd-progress__bar {
  height: 100%;
  background: var(--color-accent);
  border-radius: 9999px;
  width: 50%;                            /* step 1 = 50%, step 2 = 100% */
  transition: width 0.45s var(--ease);
}


/* ── Step panels — fade transition ── */
.bd-step {
  transition: opacity 0.26s var(--ease);
}

.bd-step--fading {
  opacity: 0;
}


/* ── Vehicle summary strip (top of Step 2) ── */
.bd-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  margin-bottom: 1.75rem;
}

.bd-summary__vehicle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.bd-summary__img {
  flex-shrink: 0;
  width: 4.25rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  overflow: hidden;
  background: #ffffff;
}

.bd-summary__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.bd-summary__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bd-summary__name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.90);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bd-summary__model {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.38);
}

.bd-summary__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 1px;
}

.bd-summary__price-from {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.32);
}

.bd-summary__price-amt {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
}


/* ── Section label ── */
.bd-section-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #E5B869;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(229, 184, 105, 0.15);
}


/* ── Form inputs ── */
.bd-field {
  margin-bottom: var(--space-4);
}

.bd-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
  margin-bottom: 0.4rem;
}

.bd-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.90);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  transition:
    border-color 0.2s var(--ease),
    background   0.2s var(--ease);
}

.bd-input::placeholder {
  color: #777777;
}

.bd-input:focus {
  border-color: rgba(169, 149, 119, 0.55);
  background: rgba(255, 255, 255, 0.07);
}


/* ── Extras block ── */
.bd-extras {
  margin-top: 1.75rem;
}

.bd-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bd-extra__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.bd-extra__label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.bd-extra__desc {
  font-size: var(--fs-xs);
  color: #888888;
  line-height: 1.4;
}


/* ── Number counter (child seats) ── */
.bd-counter {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bd-counter__btn {
  width: 2.25rem;
  height: 2.25rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s var(--ease),
    color      0.15s var(--ease);
}

.bd-counter__btn:hover:not(:disabled) {
  background: rgba(229, 184, 105, 0.12);
  color: var(--color-accent);
  border-color: rgba(229, 184, 105, 0.4);
}

.bd-counter__btn:disabled {
  opacity: 0.22;
  cursor: not-allowed;
}

.bd-counter__val {
  min-width: 2rem;
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.90);
  border-left:  1px solid rgba(255, 255, 255, 0.07);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  line-height: 2.25rem;
  user-select: none;
}


/* ── iOS-style toggle (Meet & Greet) ── */
.bd-toggle {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.bd-toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.bd-toggle__track {
  display: block;
  width: 3rem;
  height: 1.625rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.10);
  position: relative;
  transition:
    background     0.25s var(--ease),
    border-color   0.25s var(--ease);
}

.bd-toggle__track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.50);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.bd-toggle__input:checked + .bd-toggle__track {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.bd-toggle__input:checked + .bd-toggle__track::after {
  transform: translateX(1.375rem);
  background: var(--color-brand);
}

.bd-toggle__input:focus-visible + .bd-toggle__track {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}


/* ── Step 2 navigation bar ── */
.bd-step2-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* Back — ghost, deliberately faded */
.bd-back-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: transparent;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  cursor: pointer;
  transition:
    color         0.2s var(--ease),
    border-color  0.2s var(--ease),
    background    0.2s var(--ease);
}

.bd-back-btn:hover {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

/* Continue — accent fill, dual-edge highlight */
.bd-continue-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: none;
  background: var(--color-accent);
  color: var(--color-brand);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  min-height: 44px;
  transition:
    background   0.2s var(--ease),
    box-shadow   0.2s var(--ease),
    transform    0.15s var(--ease);
}

.bd-continue-btn:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 4px 20px rgba(169, 149, 119, 0.35);
}

.bd-continue-btn:active {
  transform: translateY(1px);
}

/* Dual-edge 160° border — same system as rest of site */
.bd-continue-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  padding: 1px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.55)  0%,
    rgba(255, 255, 255, 0)    40%,
    rgba(255, 255, 255, 0)    60%,
    rgba(255, 255, 255, 0.22) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}


/* ============================================================
   BOOKING DRAWER — STEP 3: Payment
   ============================================================ */

/* ── Order Summary Card ── */
.bd-order-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-xl);
  padding: 1.1rem 1.2rem;
  margin-bottom: var(--space-6);
}

.bd-order-route {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.bd-order-route__point {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bd-order-route__arrow {
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  width: 0.9rem;
  height: 0.9rem;
}

.bd-order-meta {
  display: flex;
  gap: var(--space-5);
  margin-bottom: var(--space-3);
}

.bd-order-meta__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.42);
}

.bd-order-meta__item svg {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.bd-order-vehicle {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: var(--space-4);
}

.bd-order-vehicle svg {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.bd-order-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.bd-order-total__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
}

.bd-order-total__amount {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: var(--ls-tight);
  line-height: 1;
}


/* ── Payment method selector ── */
.bd-pay-method {
  display: flex;
  gap: 3px;
  padding: 3px;
  margin-bottom: var(--space-5);
  position: relative;
  border: none !important;
}

.bd-pay-method::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  padding: 1px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 1.00)  0%,
    rgba(255, 255, 255, 0)    40%,
    rgba(255, 255, 255, 0)    60%,
    rgba(255, 255, 255, 1.00) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.bd-pay-method__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.50);
  cursor: pointer;
  transition:
    background-color var(--dur-fast) var(--ease),
    color            var(--dur-fast) var(--ease);
  text-align: center;
}

.bd-pay-method__btn.is-active {
  background-color: #ffffff;
  color: #000000;
}

.bd-pay-method__btn:not(.is-active):hover {
  color: #ffffff;
}

.bd-pay-method__title {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  line-height: 1.2;
}

.bd-pay-method__sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.75;
  line-height: 1.3;
}

.bd-pay-method__btn.is-active .bd-pay-method__sub {
  opacity: 0.55;
}

/* Online payment panel — smooth reveal */
.bd-online-payment {
  display: grid;
  grid-template-rows: 1fr;
  overflow: hidden;
  transition: grid-template-rows 0.32s var(--ease), opacity 0.32s var(--ease);
  opacity: 1;
}

.bd-online-payment[hidden] {
  display: grid !important; /* override UA hidden so transition works */
  grid-template-rows: 0fr;
  opacity: 0;
  pointer-events: none;
}

.bd-online-payment__inner {
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-bottom: var(--space-2);
}

/* ── Apple Pay button ── */
.bd-apple-pay-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-full);
  border: none;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  min-height: 52px;
  margin-bottom: var(--space-5);
  transition:
    background  0.2s var(--ease),
    transform   0.15s var(--ease),
    box-shadow  0.2s var(--ease);
}

.bd-apple-pay-btn:hover {
  background: #1c1c1e;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
  transform: translateY(-1px);
}

.bd-apple-pay-btn:active {
  transform: translateY(0);
}

.bd-apple-pay-btn svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
  flex-shrink: 0;
}


/* ── "or pay with card" divider ── */
.bd-divider {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-5) 0;
}

.bd-divider::before,
.bd-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.bd-divider__text {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
  flex-shrink: 0;
}


/* ── Stripe-style single-row card input ── */
.bd-card-strip {
  display: flex;
  align-items: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  margin-bottom: var(--space-3);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.bd-card-strip:focus-within {
  border-color: rgba(169, 149, 119, 0.55);
  background: rgba(255, 255, 255, 0.07);
}

.bd-card-strip__icon {
  padding: 0 0.55rem 0 0.9rem;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

.bd-card-strip__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.bd-card-field {
  background: transparent;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 0.90);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  padding: 0.875rem 0;
  min-width: 0;
}

.bd-card-field::placeholder {
  color: rgba(255, 255, 255, 0.20);
}

.bd-card-field--number {
  flex: 1;
}

.bd-card-field--expiry {
  width: 4.8rem;
  text-align: center;
  padding: 0.875rem 0.4rem;
}

.bd-card-field--cvc {
  width: 3.4rem;
  text-align: center;
  padding: 0.875rem 0.75rem 0.875rem 0.4rem;
}

.bd-card-sep {
  width: 1px;
  height: 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}


/* ── Trust marker ── */
.bd-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.bd-trust svg {
  width: 0.75rem;
  height: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.bd-trust__text {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.25);
}


/* ── Pay button — accent fill + full 160° dual-edge highlight ── */
.bd-pay-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  border: none;
  background: var(--color-accent);
  color: var(--color-brand);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  min-height: 44px;
  transition:
    background   0.2s var(--ease),
    box-shadow   0.2s var(--ease),
    transform    0.15s var(--ease);
}

.bd-pay-btn:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 4px 20px rgba(169, 149, 119, 0.40);
}

.bd-pay-btn:active {
  transform: translateY(1px);
}

/* Signature 160° dual-edge highlight — full 1.00 brightness */
.bd-pay-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  padding: 1px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 1.00)  0%,
    rgba(255, 255, 255, 0)    40%,
    rgba(255, 255, 255, 0)    60%,
    rgba(255, 255, 255, 1.00) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}


/* ============================================================
   BOOKING DRAWER — MONOCHROME LUXURY OVERRIDE
   Replaces every warm gold/sand accent with pure white + black.
   Appended last so cascade wins without !important.
   Site-wide --color-accent tokens are intentionally untouched.
   ============================================================ */

/* ── Map: destination pin ── */
.map-pin--end {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.60);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.30);
}

/* ── Panel header: "STEP X OF 3" label ── */
.booking-drawer__step {
  color: rgba(255, 255, 255, 0.50);
}

/* ── Scrollbar thumb ── */
.booking-drawer__panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
}

/* ── Progress bar: gold → white ── */
.bd-progress__bar {
  background: #ffffff;
}


/* ── STEP 1: Vehicle cards ─────────────────────────────────── */

.vd-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.vd-card.is-selected {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.032);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), var(--shadow-md);
}

.vd-card__price-amount {
  color: #ffffff;
}

/* Choose button — solid white pill, black text */
.vd-choose-btn {
  background: rgba(255, 255, 255, 0.92);
  color: #0a0c10;
}

.vd-choose-btn:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-1px);
}

/* ::before: swap white arc → dark inner-shadow arc on white bg */
.vd-choose-btn::before {
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.11)  0%,
    rgba(0, 0, 0, 0)     40%,
    rgba(0, 0, 0, 0)     60%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

/* Selected card — button stays white, card border conveys selection */
.vd-card.is-selected .vd-choose-btn {
  background: #ffffff;
  color: #0a0c10;
}

.vd-card.is-selected .vd-choose-btn::before {
  opacity: 1;
}


/* ── STEP 2: Summary bar, inputs, toggle, continue btn ─────── */

.bd-summary__price-amt {
  color: rgba(255, 255, 255, 0.90);
}

.bd-input:focus {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

/* iOS toggle — white track when active */
.bd-toggle__input:checked + .bd-toggle__track {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.80);
}

.bd-toggle__input:checked + .bd-toggle__track::after {
  background: #0a0c10;
}

.bd-toggle__input:focus-visible + .bd-toggle__track {
  outline-color: rgba(255, 255, 255, 0.55);
}

/* Continue to Payment — white pill, black text, dark arc shadow */
.bd-continue-btn {
  background: rgba(255, 255, 255, 0.92);
  color: #0a0c10;
  box-shadow: none;
}

.bd-continue-btn:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.10);
}

.bd-continue-btn::before {
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.11)  0%,
    rgba(0, 0, 0, 0)     40%,
    rgba(0, 0, 0, 0)     60%,
    rgba(0, 0, 0, 0.05) 100%
  );
}


/* ── STEP 3: Order total, card strip focus, pay btn ─────────── */

.bd-order-total__amount {
  color: #ffffff;
}

.bd-card-strip:focus-within {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

/* Pay button — white pill, black text, dark arc shadow */
.bd-pay-btn {
  background: rgba(255, 255, 255, 0.92);
  color: #0a0c10;
  box-shadow: none;
}

.bd-pay-btn:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.10);
}

.bd-pay-btn::before {
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.11)  0%,
    rgba(0, 0, 0, 0)     40%,
    rgba(0, 0, 0, 0)     60%,
    rgba(0, 0, 0, 0.05) 100%
  );
}



/* ============================================================
   BOOKING DRAWER — GLASS BUTTONS RESTORE
   Overrides the solid-white buttons from the monochrome block.
   Everything else (prices, progress, labels) stays white.
   ============================================================ */

/* ── Choose button ── */
.vd-choose-btn {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
}

.vd-choose-btn:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Restore white dual-edge 160° gradient border */
.vd-choose-btn::before {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 1.00)  0%,
    rgba(255, 255, 255, 0)    40%,
    rgba(255, 255, 255, 0)    60%,
    rgba(255, 255, 255, 1.00) 100%
  );
}

/* Selected card — glass, border stays visible */
.vd-card.is-selected .vd-choose-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.vd-card.is-selected .vd-choose-btn::before {
  opacity: 1;
}


/* ── Continue to Payment (Step 2) ── */
.bd-continue-btn {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.bd-continue-btn:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  box-shadow: none;
}

.bd-continue-btn::before {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 1.00)  0%,
    rgba(255, 255, 255, 0)    40%,
    rgba(255, 255, 255, 0)    60%,
    rgba(255, 255, 255, 1.00) 100%
  );
}


/* ── Pay button (Step 3) ── */
.bd-pay-btn {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.bd-pay-btn:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  box-shadow: none;
}

.bd-pay-btn::before {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 1.00)  0%,
    rgba(255, 255, 255, 0)    40%,
    rgba(255, 255, 255, 0)    60%,
    rgba(255, 255, 255, 1.00) 100%
  );
}


/* ============================================================
   HERO FORM — PRESELECT HINT
   Subtle inline message below "View options" button when a
   vehicle has been preselected from the Fleet section.
   Fade-up entrance via keyframe; instant fade-out on clear.
   ============================================================ */

@keyframes hfHintIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0);   }
}

.hf-preselect-hint {
  margin-top: 0.55rem;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.70);
  letter-spacing: var(--ls-wide);
  text-align: center;
  animation: hfHintIn 0.35s var(--ease-out) both;
  /* hidden state is toggled via [hidden] attribute in JS */
}

.hf-preselect-hint::before {
  content: '✓ ';
  color: rgba(255, 255, 255, 0.55);
}


/* ============================================================
   GOOGLE PLACES — Autocomplete input + Dropdown Styling
   Uses legacy google.maps.places.Autocomplete — attaches to
   a regular <input> so we have full CSS control, no shadow DOM.
   ============================================================ */

/* Google adds .pac-target-input to the <input> on init.
   Force our transparent underline style to always win. */
input.pac-target-input {
  background:   transparent !important;
  border:       none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 0 !important;
  box-shadow:   none !important;
  outline:      none !important;
  color:        rgba(255, 255, 255, 0.90) !important;
}

input.pac-target-input::placeholder {
  color: rgba(255, 255, 255, 0.65) !important;
}

input.pac-target-input:focus {
  border-bottom-color: #ffffff !important;
}

/* ── SUGGESTION DROPDOWN ──────────────────────────────────── */
/* Google Maps injects .pac-container into <body>. */

.pac-container {
  background-color: #0f1014;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top: none;
  border-radius: 0 0 0.75rem 0.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.60),
              0 4px 16px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  margin-top: 3px;
  overflow: hidden;
  z-index: var(--z-dropdown);
}

/* Hide "Powered by Google" logo */
.pac-container::after,
.pac-logo::after {
  display: none !important;
  background-image: none !important;
}

/* Suggestion rows */
.pac-item {
  padding: 0.65rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  line-height: 1.4;
  cursor: pointer;
  transition: background-color 120ms ease;
}

.pac-item:first-child { border-top: none; }

.pac-item:hover                      { background-color: rgba(255, 255, 255, 0.06); }
.pac-item-selected,
.pac-item-selected:hover             { background-color: rgba(255, 255, 255, 0.09); }

/* Primary place name */
.pac-item-query {
  color:       rgba(255, 255, 255, 0.90);
  font-size:   0.875rem;
  font-weight: 500;
  padding-right: 0.35rem;
}

/* Matched characters (bold) */
.pac-matched {
  color:       #ffffff;
  font-weight: 700;
}

/* Map pin icon — desaturated to monochrome */
.pac-icon {
  filter:     brightness(0) invert(0.45);
  margin-top: 0.15rem;
  flex-shrink: 0;
}


/* ==========================================================
   FORM VALIDATION — error state for empty required fields
   ========================================================== */

/* Shake animation — fires once when error class is added */
@keyframes hfErrorShake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-5px); }
  60%       { transform: translateX(4px); }
  80%       { transform: translateX(-3px); }
}

.hero-form__input-wrap.error {
  animation: hfErrorShake 0.35s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* Red underline on the input/trigger inside the errored wrap */
.hero-form__input-wrap.error .hero-form__input,
.hero-form__input-wrap.error .hf-picker-trigger {
  border-bottom-color: rgba(239, 68, 68, 0.80) !important;
  transition: border-bottom-color 0.2s ease;
}

/* Tint the field icon to match */
.hero-form__input-wrap.error .hero-form__input-icon {
  color: rgba(239, 68, 68, 0.70);
  transition: color 0.2s ease;
}

/* Step 2 passenger fields — same error treatment */
.bd-field.error {
  animation: hfErrorShake 0.35s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.bd-field.error .bd-input {
  border-bottom-color: rgba(239, 68, 68, 0.80) !important;
  transition: border-bottom-color 0.2s ease;
}

/* ── Booking success screen ── */
.bd-success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  z-index: 20;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.bd-success:not([hidden]) {
  opacity: 1;
}

.bd-success[hidden] {
  display: flex !important;
  pointer-events: none;
}

.bd-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--color-accent);
}

.bd-success__icon svg {
  width: 32px;
  height: 32px;
}

.bd-success__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: var(--ls-tight);
  margin: 0 0 1rem;
}

.bd-success__body {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0 0 0.5rem;
}

.bd-success__sub {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.40);
  margin: 0 0 2.5rem;
}

.bd-success__close {
  padding: 0.7rem 2.2rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.20);
  background: transparent;
  color: rgba(255,255,255,0.70);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.bd-success__close:hover {
  border-color: rgba(255,255,255,0.55);
  color: #ffffff;
}


/* ============================================================
   BOOKING DRAWER — LUXURY GOLD ACCENTS  (v2.0)
   Variable: --accent-gold  (#E5B869)
   Layered last so cascade wins cleanly.
   ============================================================ */

:root {
  --accent-gold:      #E5B869;
  --accent-gold-dim:  rgba(229, 184, 105, 0.18);
  --accent-gold-glow: rgba(229, 184, 105, 0.30);
}

/* ── 1. "STEP X OF 3" label ── */
.booking-drawer__step {
  color: var(--accent-gold) !important;
  opacity: 0.85;
  letter-spacing: 0.10em;
}

/* ── 2. Route timeline — pins & dotted line ── */
.map-pin {
  border-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold-glow);
}

.map-pin--end {
  background:   var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  box-shadow:   0 0 12px var(--accent-gold-glow) !important;
}

.map-line {
  background: repeating-linear-gradient(
    to bottom,
    rgba(169, 149, 119, 0.55) 0,
    rgba(169, 149, 119, 0.55) 4px,
    transparent               4px,
    transparent               9px
  ) !important;
}

/* ── 3. Pricing — vehicle card prices ── */
.vd-card__price-amount {
  color: var(--accent-gold) !important;
}

/* ── 3b. Step-2 summary price ── */
.bd-summary__price-amt {
  color: var(--accent-gold) !important;
}

/* ── 3c. Step-3 TOTAL amount ── */
.bd-order-total__amount {
  color: var(--accent-gold) !important;
}

/* ── 4a. Selected vehicle card — gold border glow ── */
.vd-card.is-selected {
  border-color: var(--accent-gold) !important;
  box-shadow:
    0 0 0 1px var(--accent-gold),
    0 0 18px var(--accent-gold-glow),
    var(--shadow-md) !important;
  background: rgba(212, 175, 55, 0.04) !important;
}

/* ── 4b. Meet & Greet toggle — gold track ── */
.bd-toggle__input:checked + .bd-toggle__track {
  background:   var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
}

.bd-toggle__input:checked + .bd-toggle__track::after {
  background: #0a0c10 !important;
}

.bd-toggle__input:focus-visible + .bd-toggle__track {
  outline-color: var(--accent-gold) !important;
}

/* ── 4c. Pay Method toggle — elegant gold active state ── */
.bd-pay-method__btn.is-active {
  background-color: var(--accent-gold-dim) !important;
  color:            var(--accent-gold)     !important;
  border:           1px solid var(--accent-gold) !important;
  box-shadow:       0 0 12px var(--accent-gold-glow) !important;
}

.bd-pay-method__btn.is-active .bd-pay-method__sub {
  opacity: 0.70 !important;
}


/* ============================================================
   BOOKING DRAWER — STEP 2: Comments / Special Requests
   ============================================================ */

.bd-comments {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.bd-comments__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #E5B869;
}

.bd-comments__area {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.6;
  resize: none;
  max-height: 100px;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.bd-comments__area::placeholder {
  color: #777777;
  font-style: italic;
}

.bd-comments__area:focus {
  border-color: #E5B869;
  background: rgba(229, 184, 105, 0.06);
  box-shadow: 0 0 0 3px rgba(229, 184, 105, 0.12);
}

/* ── Footer legal strip ── */
/* Legal registration numbers — true center column in the bottom bar */
.site-footer__reg {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  white-space: nowrap;
  text-align: center;
  flex: 1;
}

.site-footer__reg span {
  margin-inline: 0.5em;
  opacity: 0.45;
}

/* Mobile: wrap to its own row, centered */
@media (max-width: 767px) {
  .site-footer__copy,
  .site-footer__legal {
    flex: unset;
  }
  .site-footer__reg {
    white-space: normal;
    order: 3;
    flex-basis: 100%;
    flex: unset;
  }
}
