@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap');

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
  --bg: #02050a;
  --bg-raised: #050a12;
  --surface: #09111a;
  --surface-2: #0d1622;
  --surface-3: #162032;
  --border: rgba(148, 180, 214, 0.08);
  --border-hover: rgba(148, 180, 214, 0.18);
  --text: #e8edf5;
  --text-secondary: #8a9bb5;
  --text-tertiary: #5e7086;
  --accent: #2f5faa;
  --accent-hover: #3d74c8;
  --accent-subtle: rgba(47, 95, 170, 0.14);
  --accent-glow: rgba(39, 79, 146, 0.22);
  --gold: #cfa85e;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.34);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

[hidden] {
  display: none !important;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background:
    radial-gradient(ellipse at 18% 0%, rgba(47, 95, 170, 0.11), transparent 42%),
    radial-gradient(ellipse at 80% 100%, rgba(39, 79, 146, 0.08), transparent 40%),
    radial-gradient(circle at 50% 12%, rgba(207, 168, 94, 0.03), transparent 22%),
    linear-gradient(180deg, rgba(1, 3, 7, 0.98), rgba(2, 5, 10, 1)),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Layout ──────────────────────────────────────────────────── */
.site-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.site-wrap--chrome {
  padding-bottom: 10px;
}

.site-wrap--landing {
  padding-top: 10px;
}

.site-wrap--footer {
  padding-top: 0;
  padding-bottom: 30px;
}

/* ── Site Nav ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(2, 5, 10, 0.92), rgba(2, 5, 10, 0.6) 72%, transparent);
  backdrop-filter: blur(10px);
}

.site-nav {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px 0 18px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo-image {
  width: auto;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(3, 9, 21, 0.34));
}

.site-nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.site-nav-links a {
  color: #cbd8ea;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition), text-shadow var(--transition);
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible {
  color: #f3f7ff;
  text-shadow: 0 0 16px rgba(80, 132, 221, 0.18);
  outline: none;
}

.site-nav-links a[aria-current='page'] {
  color: #f3f7ff;
  text-shadow: 0 0 16px rgba(80, 132, 221, 0.14);
}

/* ── Top Bar ─────────────────────────────────────────────────── */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(148, 180, 214, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(15, 24, 38, 0.9), rgba(9, 14, 24, 0.92)),
    rgba(10, 16, 24, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  background: linear-gradient(135deg, #2a62b8, #143a82, #0a2560);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 8px 28px rgba(20, 55, 130, 0.45),
    0 0 20px rgba(30, 70, 160, 0.15);
}

.nav-actions {
  display: flex;
  gap: 8px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.14s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.14s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.14s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.14s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.14s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.btn-primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(158, 204, 255, 0.12), rgba(158, 204, 255, 0.02) 24%, rgba(158, 204, 255, 0) 44%),
    linear-gradient(180deg, #20487f 0%, #1c59b5 54%, #2c79f2 100%);
  color: #fff;
  box-shadow:
    0 14px 30px rgba(3, 10, 25, 0.48),
    0 4px 18px rgba(18, 54, 120, 0.22),
    inset 0 1px 0 rgba(166, 204, 255, 0.18);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 18%, rgba(60, 130, 240, 0.25), transparent 36%),
    radial-gradient(circle at 80% 80%, rgba(20, 70, 170, 0.45), transparent 42%);
  opacity: 0.6;
  filter: blur(20px);
  transition:
    opacity 0.16s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.16s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover {
  background:
    linear-gradient(145deg, rgba(158, 204, 255, 0.12), rgba(158, 204, 255, 0.02) 24%, rgba(158, 204, 255, 0) 44%),
    linear-gradient(180deg, #20487f 0%, #1c59b5 54%, #2c79f2 100%);
  transform: translateY(-1px);
  box-shadow:
    0 14px 30px rgba(3, 10, 25, 0.48),
    0 4px 18px rgba(18, 54, 120, 0.22),
    0 0 0 1px rgba(111, 169, 255, 0.18),
    0 0 22px rgba(32, 92, 191, 0.14),
    inset 0 1px 0 rgba(178, 212, 255, 0.22);
}

.btn-primary:hover::before {
  opacity: 0.45;
  transform: none;
}

.btn-primary:focus-visible {
  outline: none;
  box-shadow:
    0 14px 30px rgba(3, 10, 25, 0.48),
    0 4px 18px rgba(18, 54, 120, 0.22),
    0 0 0 1px rgba(111, 169, 255, 0.22),
    0 0 0 3px rgba(73, 128, 223, 0.16),
    0 0 22px rgba(32, 92, 191, 0.14),
    inset 0 1px 0 rgba(178, 212, 255, 0.22);
}

.btn-ghost {
  border: 1px solid rgba(63, 121, 220, 0.3);
  background:
    linear-gradient(145deg, rgba(122, 178, 255, 0.08), rgba(122, 178, 255, 0.01) 28%, rgba(122, 178, 255, 0) 46%),
    linear-gradient(180deg, rgba(20, 37, 61, 0.92), rgba(11, 20, 34, 0.88));
  color: #e3efff;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(182, 214, 255, 0.08),
    inset 0 0 0 1px rgba(73, 126, 218, 0.08);
}

.btn-ghost:hover {
  border-color: rgba(90, 151, 255, 0.4);
  background:
    linear-gradient(145deg, rgba(122, 178, 255, 0.08), rgba(122, 178, 255, 0.01) 28%, rgba(122, 178, 255, 0) 46%),
    linear-gradient(180deg, rgba(20, 37, 61, 0.92), rgba(11, 20, 34, 0.88));
  color: var(--text);
  transform: translateY(-1px);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(90, 151, 255, 0.14),
    0 0 20px rgba(47, 89, 171, 0.12),
    inset 0 1px 0 rgba(182, 214, 255, 0.08);
}

.btn-ghost:focus-visible {
  outline: none;
  border-color: rgba(102, 161, 255, 0.46);
  box-shadow:
    0 0 0 3px rgba(67, 118, 204, 0.16),
    inset 0 1px 0 rgba(214, 230, 255, 0.1),
    inset 0 0 0 1px rgba(88, 145, 239, 0.14);
}

/* ── Hero Section ────────────────────────────────────────────── */
.hero {
  border: 1px solid rgba(148, 180, 214, 0.12);
  border-radius: 30px;
  padding: 56px 48px 48px;
  /* background:
    linear-gradient(135deg, rgba(15, 24, 38, 0.92), rgba(7, 13, 23, 0.96)),
    var(--surface); */
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(47, 95, 170, 0.22), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(39, 79, 146, 0.16), transparent 30%),
    radial-gradient(circle at 76% 72%, rgba(65, 118, 213, 0.14), transparent 26%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  top: -150px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 79, 146, 0.28), transparent 68%);
  filter: blur(28px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-right: 40px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}

.hero-location-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 18px;
  color: #bcc9da;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-location-row span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-location-row .material-symbols-rounded {
  font-size: 1rem;
  color: #8d949f;
  font-variation-settings:
    'FILL' 1,
    'wght' 500,
    'GRAD' 0,
    'opsz' 24;
  text-shadow: 0 0 16px rgba(157, 71, 71, 0.18);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 7vw, 5.35rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: none;
  position: relative;
  text-wrap: balance;
  color: #eef4ff;
}

@media (min-width: 429px) {
  .hero h1 {
    font-size: clamp(3.1rem, 7vw, 5.35rem);
  }
}

@media (min-width: 499px) {
  .hero h1 {
    font-size: clamp(3.5rem, 7vw, 5.35rem);
  }
}

.hero h1 span {
  display: block;
  text-shadow: 0 10px 24px rgba(4, 12, 25, 0.18);
}

.hero h1 span:last-child {
  white-space: nowrap;
  width: max-content;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 span {
    color: transparent;
    background-image: linear-gradient(135deg, #f7fbff 0%, #dce8f8 48%, #2f84ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.hero p {
  max-width: 600px;
  color: #a8b8cf;
  font-size: 1.05rem;
  margin-top: 18px;
  line-height: 1.7;
  position: relative;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(144, 176, 225, 0.12);
  background:
    linear-gradient(135deg, rgba(113, 150, 214, 0.06), rgba(113, 150, 214, 0.02) 38%, rgba(113, 150, 214, 0) 68%),
    linear-gradient(180deg, rgba(17, 26, 40, 0.78), rgba(10, 16, 26, 0.88));
  color: #dce8fa;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow:
    inset 0 1px 0 rgba(209, 227, 255, 0.05),
    0 8px 16px rgba(7, 14, 27, 0.08);
  white-space: nowrap;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, #02b3ff 0%, #0ed1ff 100%);
  box-shadow:
    0 0 0 1px rgba(121, 229, 255, 0.08),
    0 0 10px rgba(14, 209, 255, 0.22);
  flex: 0 0 auto;
}

.hero-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  position: relative;
}

.hero-cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 0;
  transition:
    transform 0.14s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.14s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.14s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: var(--hero-cta-ring);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.9;
}

.hero-cta .material-symbols-rounded {
  font-size: 0.9rem;
  font-variation-settings:
    'FILL' 1,
    'wght' 500,
    'GRAD' 0,
    'opsz' 24;
}

.hero-cta--primary {
  --hero-cta-ring: linear-gradient(135deg, rgba(142, 181, 248, 0.9), rgba(102, 150, 234, 0.34) 42%, rgba(168, 200, 255, 0.78) 100%);
  background:
    linear-gradient(135deg, rgba(111, 151, 229, 0.1), rgba(111, 151, 229, 0.03) 34%, rgba(111, 151, 229, 0) 58%),
    linear-gradient(135deg, rgba(16, 29, 48, 0.28), rgba(16, 29, 48, 0.08));
  color: #f6f9ff;
  box-shadow:
    inset 0 1px 0 rgba(177, 209, 255, 0.08),
    0 10px 24px rgba(6, 16, 34, 0.18);
}

.hero-cta--secondary {
  --hero-cta-ring: linear-gradient(135deg, rgba(194, 218, 255, 0.7), rgba(176, 152, 200, 0.26) 46%, rgba(226, 194, 214, 0.72) 100%);
  background:
    linear-gradient(140deg, rgba(212, 168, 187, 0.1), rgba(212, 168, 187, 0.03) 30%, rgba(212, 168, 187, 0) 56%),
    linear-gradient(135deg, rgba(20, 28, 43, 0.24), rgba(20, 28, 43, 0.08));
  color: #e6efff;
  box-shadow:
    inset 0 1px 0 rgba(233, 209, 222, 0.08),
    0 10px 24px rgba(10, 18, 31, 0.18);
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero-cta--primary:hover,
.hero-cta--primary:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(177, 209, 255, 0.12),
    0 0 22px rgba(56, 91, 158, 0.12),
    0 10px 24px rgba(6, 16, 34, 0.2);
}

.hero-cta--secondary:hover,
.hero-cta--secondary:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(233, 209, 222, 0.12),
    0 0 18px rgba(102, 84, 123, 0.1),
    0 10px 24px rgba(10, 18, 31, 0.2);
}

.hero-video-shell {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(42%, 510px);
  overflow: hidden;
  /* border-top-right-radius: 30px; */
  /* border-bottom-right-radius: 30px; */
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 8%,
    rgba(0, 0, 0, 0.26) 16%,
    rgba(0, 0, 0, 0.58) 28%,
    rgba(0, 0, 0, 0.88) 42%,
    #000 58%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 8%,
    rgba(0, 0, 0, 0.26) 16%,
    rgba(0, 0, 0, 0.58) 28%,
    rgba(0, 0, 0, 0.88) 42%,
    #000 58%,
    #000 100%
  );
}

.hero-video-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7, 13, 23, 0.16), rgba(7, 13, 23, 0.46)),
    radial-gradient(circle at 72% 24%, rgba(80, 126, 214, 0.18), transparent 32%);
}

.hero-video-shell::after {
  display: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.92) brightness(0.58);
  transform: scale(1.08);
}

.landing-divider {
  height: 1px;
  margin: 8px 0 28px;
  background:
    linear-gradient(90deg, transparent, rgba(86, 142, 224, 0.28) 18%, rgba(86, 142, 224, 0.5) 50%, rgba(86, 142, 224, 0.28) 82%, transparent);
  box-shadow: 0 0 22px rgba(47, 95, 170, 0.2);
}

/* ── Contact Section ─────────────────────────────────────────── */
.contact-section {
  margin: 0 0 32px;
}

.contact-band {
  display: grid;
  gap: 18px;
}

.contact-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: 0 18px;
  align-items: stretch;
}

.contact-inline-item {
  display: grid;
  grid-template-columns: 34px auto;
  column-gap: 14px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-height: 64px;
  padding: 0;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.contact-inline-item:hover,
.contact-inline-item:focus-visible {
  color: #f3f7ff;
  outline: none;
}

.contact-inline-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, rgba(86, 142, 224, 0.34), transparent);
  box-shadow: 0 0 18px rgba(47, 95, 170, 0.14);
}

.contact-inline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
}

.contact-inline-icon .fa-solid {
  display: inline-block;
  font-size: 1.45rem;
  line-height: 1;
  color: transparent;
  background-image: linear-gradient(116deg, #00a0ff 0%, #1e54a4 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 0 10px rgba(2, 179, 255, 0.34))
    drop-shadow(0 0 22px rgba(14, 209, 255, 0.26));
  transition:
    transform 0.16s ease,
    filter 0.16s ease;
}

.contact-inline-item:hover .contact-inline-icon .fa-solid,
.contact-inline-item:focus-visible .contact-inline-icon .fa-solid {
  transform: translateY(-1px) scale(1.04);
  filter:
    drop-shadow(0 0 12px rgba(2, 179, 255, 0.42))
    drop-shadow(0 0 26px rgba(14, 209, 255, 0.34));
}

.contact-inline-copy {
  min-width: 0;
  text-align: left;
}

.contact-inline-label {
  color: #7fa6df;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-inline-value {
  display: block;
  color: #edf3ff;
  font-size: 0.96rem;
  line-height: 1.4;
  margin-top: 3px;
}

.contact-map-slab {
  padding: 0;
  border: 1px solid rgba(148, 180, 214, 0.05);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(11, 19, 31, 0.58), rgba(7, 12, 21, 0.74));
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(183, 212, 255, 0.02);
}

.contact-map {
  position: relative;
  height: 100%;
  min-height: 228px;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(18, 29, 45, 0.92), rgba(10, 17, 28, 0.96));
}

.contact-map-embed {
  position: absolute;
  top: -115px;
  left: -50px;
  width: calc(100% + 96px);
  height: calc(100% + 134px);
  border: 0;
  filter:
    grayscale(1)
    invert(0.94)
    sepia(0.14)
    hue-rotate(182deg)
    saturate(0.58)
    brightness(0.52)
    contrast(1.08);
}

.contact-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 24, 0.18), rgba(8, 14, 24, 0.4)),
    linear-gradient(135deg, rgba(24, 52, 104, 0.28), rgba(11, 21, 38, 0.16) 52%, rgba(42, 84, 162, 0.22)),
    radial-gradient(circle at 22% 20%, rgba(96, 135, 201, 0.18), transparent 34%),
    radial-gradient(circle at 74% 72%, rgba(96, 135, 201, 0.22), transparent 30%);
  z-index: 1;
}

.contact-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(110, 159, 238, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 159, 238, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(108, 154, 224, 0.08);
}

.contact-map-route {
  display: none;
}

.contact-map-pin {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #0b84da, #736767);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.18),
    0 0 22px rgba(157, 71, 71, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  z-index: 4;
}

.contact-map-pin::before {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  top: 8px;
  left: 8px;
  border-radius: 50%;
  background: rgba(14, 20, 30, 0.72);
}

.contact-map-badge {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(148, 180, 214, 0.12);
  background:
    linear-gradient(180deg, rgba(17, 31, 49, 0.97), rgba(10, 17, 28, 0.97));
  color: #edf3ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 4;
}

/* ── FAQ Page ───────────────────────────────────────────────── */
.faq-page {
  padding-bottom: 28px;
}

.faq-hero {
  display: block;
  margin-bottom: 26px;
  padding: 34px 38px;
  border: 1px solid rgba(148, 180, 214, 0.1);
  border-radius: 30px;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.24);
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: none;
}

.faq-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.faq-eyebrow,
.faq-group-kicker,
.faq-help-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8cb1e9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-eyebrow::before,
.faq-group-kicker::before,
.faq-help-kicker::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #00a0ff 0%, #1e54a4 100%);
  box-shadow:
    0 0 0 1px rgba(122, 191, 255, 0.08),
    0 0 12px rgba(17, 116, 255, 0.22);
}

.faq-hero h1 {
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.9rem, 6vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #eef4ff;
}

.faq-lead {
  max-width: 640px;
  margin-top: 18px;
  color: #a8b8cf;
  font-size: 1.02rem;
  line-height: 1.75;
}

.faq-group + .faq-group {
  margin-top: 26px;
}

.faq-group-head {
  max-width: 760px;
  margin-bottom: 14px;
}

.faq-group-head h2 {
  margin-top: 10px;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  line-height: 1.04;
  color: #eef4ff;
}

.faq-shell {
  border: 1px solid rgba(148, 180, 214, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(10, 18, 30, 0.92), rgba(7, 13, 22, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(210, 228, 255, 0.03),
    0 18px 34px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.faq-item {
  position: relative;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(148, 180, 214, 0.08);
}

.faq-item summary {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  color: #eef4ff;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
  transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  background: linear-gradient(90deg, rgba(16, 28, 47, 0.72), rgba(11, 18, 31, 0.25));
  outline: none;
}

.faq-item[open] summary {
  background: linear-gradient(90deg, rgba(24, 44, 72, 0.9), rgba(14, 24, 40, 0.52));
  box-shadow:
    inset 0 -1px 0 rgba(95, 151, 243, 0.14),
    0 12px 24px rgba(4, 10, 20, 0.08);
}

.faq-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #b6c8e2;
  background: rgba(122, 156, 210, 0.08);
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.faq-item[open] .faq-item-icon {
  transform: rotate(45deg);
  color: #f5f9ff;
  background: rgba(47, 132, 255, 0.16);
}

.faq-answer {
  display: grid;
  gap: 11px;
  padding: 14px 24px 22px;
}

.faq-answer p {
  margin: 0;
  color: #9fb1ca;
  font-size: 0.95rem;
  line-height: 1.72;
}

.faq-list {
  margin: 0;
  padding-left: 18px;
  color: #dbe6f6;
  display: grid;
  gap: 9px;
}

.faq-list li {
  padding-left: 4px;
  line-height: 1.62;
}

.faq-list--inline {
  grid-template-columns: 1fr;
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
  gap: 0;
}

.faq-list--inline li {
  position: relative;
  padding: 12px 0 12px 18px;
  line-height: 1.58;
  border-top: 1px solid rgba(148, 180, 214, 0.08);
}

.faq-list--inline li:first-child {
  padding-top: 0;
  border-top: 0;
}

.faq-list--inline li::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #00a0ff 0%, #1e54a4 100%);
  box-shadow:
    0 0 0 1px rgba(122, 191, 255, 0.08),
    0 0 12px rgba(17, 116, 255, 0.18);
}

.faq-list--inline li:first-child::before {
  top: 8px;
}

.faq-host-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: center;
  margin-top: 30px;
  padding: 30px 32px;
  border: 1px solid rgba(148, 180, 214, 0.09);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(30, 84, 164, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(14, 25, 42, 0.94), rgba(8, 14, 24, 0.96));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.faq-host-content {
  display: grid;
  gap: 22px;
}

.faq-host-copy h2 {
  margin-top: 10px;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.02;
  color: #eef4ff;
}

.faq-host-copy p {
  max-width: 720px;
  margin-top: 12px;
  color: #9db0c9;
  font-size: 0.97rem;
  line-height: 1.74;
}

.faq-host-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-host-visual {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-host-visual::before {
  content: '';
  position: absolute;
  inset: 18% 10% 12%;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 46%, rgba(47, 132, 255, 0.22), transparent 48%),
    radial-gradient(circle at 66% 58%, rgba(24, 71, 150, 0.18), transparent 42%);
  filter: blur(24px);
  pointer-events: none;
}

.faq-host-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(1, 6, 14, 0.28));
}

/* ── Section Head ────────────────────────────────────────────── */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
}

.section-head h2 {
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}

.section-copy {
  margin-top: 4px;
  color: var(--text-secondary);
  max-width: 500px;
  font-size: 0.9rem;
}

.fleet-section-head {
  margin: 0 0 14px;
}

/* ── Landing Process ─────────────────────────────────────────── */
.landing-process {
  margin: 0 0 32px;
}

.landing-process-head {
  margin-top: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 188px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(148, 180, 214, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(13, 21, 34, 0.94), rgba(8, 13, 22, 0.94));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(47, 95, 170, 0.14), transparent 42%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.02), transparent 62%);
  pointer-events: none;
}

.process-step {
  display: inline-flex;
  margin-bottom: 18px;
  color: #7fa6df;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-card h3 {
  position: relative;
  margin-bottom: 10px;
  font-size: 1.18rem;
  color: #edf3ff;
}

.process-card p {
  position: relative;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── Filters ─────────────────────────────────────────────────── */
.filters {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr) minmax(220px, 0.8fr) minmax(220px, 0.75fr);
  gap: 10px;
  align-items: end;
  margin-bottom: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.availability-shell .booking-field,
.availability-shell .booking-select-wrap,
.availability-shell .booking-action {
  min-width: 0;
}

.booking-field-label {
  display: block;
  color: #7ea0d8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.booking-field .booking-picker-input,
.booking-select-wrap select {
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(72, 126, 219, 0.26);
  background:
    linear-gradient(145deg, rgba(115, 172, 255, 0.08), rgba(115, 172, 255, 0.01) 28%, rgba(115, 172, 255, 0) 44%),
    linear-gradient(180deg, rgba(15, 28, 45, 0.98), rgba(9, 17, 28, 0.98)),
    var(--bg-raised);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow:
    inset 0 1px 0 rgba(202, 224, 255, 0.06),
    inset 0 0 0 1px rgba(71, 126, 219, 0.07);
  transition:
    border-color 0.14s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.14s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.14s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-field .booking-picker-input {
  cursor: pointer;
  margin-top: 0;
}

.booking-field .booking-picker-input:hover,
.booking-select-wrap select:hover {
  border-color: rgba(103, 157, 246, 0.34);
  box-shadow:
    0 0 0 1px rgba(80, 134, 225, 0.12),
    0 0 18px rgba(47, 89, 171, 0.08),
    inset 0 1px 0 rgba(202, 224, 255, 0.06),
    inset 0 0 0 1px rgba(71, 126, 219, 0.07);
}

.booking-field .booking-picker-input:focus,
.booking-select-wrap select:focus {
  border-color: rgba(103, 157, 246, 0.38);
  box-shadow:
    0 0 0 1px rgba(80, 134, 225, 0.14),
    0 0 0 3px rgba(73, 128, 223, 0.12),
    0 0 20px rgba(47, 89, 171, 0.1),
    inset 0 1px 0 rgba(202, 224, 255, 0.06),
    inset 0 0 0 1px rgba(71, 126, 219, 0.07);
}

.booking-field .booking-picker-input::placeholder,
.booking-select-wrap select {
  color: #d7e2f3;
}

.booking-select-wrap {
  display: flex;
  align-items: flex-end;
}

.booking-select-wrap select {
  appearance: none;
  margin-top: 0;
  background-image:
    linear-gradient(45deg, transparent 50%, #7ea0d8 50%),
    linear-gradient(135deg, #7ea0d8 50%, transparent 50%);
  background-position:
    calc(100% - 28px) calc(50% - 2px),
    calc(100% - 23px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.booking-action {
  display: flex;
  align-items: flex-end;
}

.booking-submit {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  font-size: 0.83rem;
  letter-spacing: 0.14em;
  overflow: hidden;
}

.booking-submit:hover {
  transform: none;
}

/* ── Form Elements ───────────────────────────────────────────── */
input,
select,
textarea {
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font: inherit;
  font-size: 0.88rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle), 0 0 20px rgba(39, 79, 146, 0.08);
}

input::placeholder, textarea::placeholder { color: var(--text-tertiary); }
textarea { resize: vertical; }
label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text-secondary); }
label input, label select, label textarea { margin-top: 6px; }

/* ── Flatpickr ───────────────────────────────────────────────── */
.flatpickr-calendar {
  width: 328px;
  border: 1px solid rgba(86, 123, 189, 0.2);
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 29, 45, 0.98), rgba(8, 15, 25, 0.98)),
    var(--surface);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(39, 79, 146, 0.18);
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  display: block;
}

.flatpickr-calendar.animate.open {
  animation: availabilityCalendarIn 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes availabilityCalendarIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.flatpickr-months {
  padding: 14px 14px 8px;
}

.flatpickr-months .flatpickr-month {
  color: var(--text);
  fill: var(--text);
}

.flatpickr-current-month {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  padding-top: 0;
  font-size: 0.96rem;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: var(--text);
  font-weight: 700;
}

.flatpickr-current-month .cur-month {
  color: var(--text);
  font-weight: 700;
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
  min-height: 0;
}

.flatpickr-current-month .numInputWrapper {
  width: 4.3ch;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  top: 16px;
  color: #cfdced;
  fill: #cfdced;
  padding: 6px;
  border-radius: 999px;
}

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

span.flatpickr-weekday {
  color: #7f93af;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.flatpickr-weekdays {
  background: transparent;
  padding: 0 14px 8px;
}

.flatpickr-day {
  color: var(--text);
  border-radius: 12px;
  border: 1px solid transparent;
  max-width: 38px;
  height: 38px;
  line-height: 38px;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.notAllowed {
  color: #7d8faa;
  opacity: 0.72;
}

.flatpickr-day.is-booked-day,
.flatpickr-day.is-booked-day.flatpickr-disabled,
.flatpickr-day.is-booked-day.notAllowed {
  position: relative;
  color: rgba(225, 214, 170, 0.96);
  background: linear-gradient(180deg, rgba(118, 104, 54, 0.28), rgba(79, 70, 34, 0.18));
  border-color: rgba(214, 186, 98, 0.24);
  opacity: 0.88;
}

.flatpickr-day.is-booked-day:hover,
.flatpickr-day.is-booked-day:focus {
  background: linear-gradient(180deg, rgba(122, 108, 56, 0.32), rgba(84, 73, 36, 0.22));
  border-color: rgba(220, 193, 107, 0.32);
}

.flatpickr-day.is-booked-day::after {
  content: attr(data-booking-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  padding: 5px 8px;
  border-radius: 20px;
  background: rgba(16, 21, 31, 0.96);
  border: 1px solid rgba(214, 186, 98, 0.28);
  color: #f3e8ba;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.34);
  transition: opacity 0.14s ease, transform 0.14s ease;
  z-index: 8;
}

.flatpickr-day.is-booked-day:hover::after,
.flatpickr-day.is-booked-day:focus::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.flatpickr-innerContainer,
.flatpickr-rContainer {
  background: transparent;
}

.dayContainer,
.flatpickr-days {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.dayContainer {
  padding: 0 14px 14px;
}

.flatpickr-day.today {
  border-color: rgba(86, 123, 189, 0.44);
  color: #dce7f7;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
  background: rgba(39, 79, 146, 0.14);
  border-color: rgba(86, 123, 189, 0.22);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.is-linked-start-day,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.is-linked-start-day:hover,
.flatpickr-day.endRange:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #4174c5, #234c97);
  box-shadow:
    0 10px 20px rgba(39, 79, 146, 0.24),
    0 0 24px rgba(39, 79, 146, 0.12);
}

.flatpickr-day.inRange,
.flatpickr-day.is-linked-range-day {
  background: rgba(39, 79, 146, 0.14);
  border-color: transparent;
  box-shadow: none;
}

.flatpickr-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-height: none;
  padding: 14px 14px 14px;
  border-top: 0;
  background: linear-gradient(180deg, rgba(9, 15, 24, 0.82), rgba(7, 12, 20, 0.98));
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: auto;
  border-top: 0 !important;
}

.flatpickr-time .numInputWrapper,
.flatpickr-time .flatpickr-am-pm {
  height: 44px;
  border-radius: 12px;
  background: rgba(17, 28, 43, 0.92);
  border: 1px solid rgba(86, 123, 189, 0.14);
  box-sizing: border-box;
}

.flatpickr-time .numInputWrapper {
  flex: 0 0 58px;
  width: 58px;
  min-width: 58px;
  overflow: hidden;
}

.flatpickr-time input,
.flatpickr-time .flatpickr-am-pm,
.flatpickr-time .flatpickr-time-separator {
  color: var(--text);
  font-weight: 700;
}

.flatpickr-time input.flatpickr-hour,
.flatpickr-time input.flatpickr-minute {
  background: transparent;
  border: 0;
  box-shadow: none;
  min-height: 44px;
  width: 100%;
  padding: 0;
}

.flatpickr-time input.flatpickr-hour:focus,
.flatpickr-time input.flatpickr-minute:focus,
.flatpickr-current-month input.cur-year:focus {
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: none;
}

.flatpickr-time .flatpickr-time-separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  font-size: 1rem;
  opacity: 0.74;
}

.flatpickr-time .flatpickr-am-pm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 72px;
  width: 72px;
  margin-left: 2px;
  box-shadow: none;
}

.flatpickr-time input:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus,
.numInputWrapper:hover {
  background: rgba(39, 79, 146, 0.12);
}

.flatpickr-time input::selection,
.flatpickr-current-month input.cur-year::selection {
  background: rgba(47, 95, 170, 0.28);
  color: #eef4ff;
}

.numInputWrapper span.arrowUp::after {
  border-bottom-color: #9db8e4;
}

.numInputWrapper span.arrowDown::after {
  border-top-color: #9db8e4;
}

.flatpickr-monthDropdown-months,
.flatpickr-monthDropdown-months option {
  background: #0d1520;
  color: #dce6f6;
}

/* ── Vehicle Grid ────────────────────────────────────────────── */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* ── Vehicle Card ────────────────────────────────────────────── */
.vehicle-card {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 24, 38, 0.98), rgba(10, 16, 26, 0.98));
  border: 1px solid rgba(148, 180, 214, 0.12);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.vehicle-card:hover {
  border-color: rgba(96, 142, 224, 0.44);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.34),
    0 0 52px rgba(55, 104, 196, 0.18);
  transform: translateY(-6px);
}

.vehicle-card-media {
  position: relative;
  padding: 12px 12px 0;
  overflow: hidden;
}

.vehicle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(39, 79, 146, 0.12), transparent 28%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.vehicle-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  background:
    radial-gradient(circle at 18% 20%, rgba(86, 142, 224, 0.16), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(66, 113, 191, 0.22), transparent 36%);
  opacity: 0;
  filter: blur(16px);
  transition: opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.vehicle-card:hover::before {
  opacity: 1;
}

.vehicle-card:hover::after {
  opacity: 1;
  animation: vehicleCardGlowPulse 2.6s ease-in-out infinite;
}

@keyframes vehicleCardGlowPulse {
  0% {
    transform: scale(0.995);
    filter: blur(14px);
  }
  50% {
    transform: scale(1.01);
    filter: blur(19px);
  }
  100% {
    transform: scale(0.995);
    filter: blur(14px);
  }
}

.vehicle-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: filter var(--transition);
}

.vehicle-card-link {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.vehicle-card-body {
  padding: 16px 16px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}

.vehicle-card-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.vehicle-card-titleblock {
  min-width: 0;
}

.vehicle-card-make {
  margin: 0;
  color: #658dcf;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vehicle-card-name {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.vehicle-card-price {
  display: grid;
  justify-items: end;
  align-content: center;
  align-self: center;
  gap: 6px;
  white-space: nowrap;
}

.vehicle-card-price-line {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

/* ── Vehicle Card Specs ──────────────────────────────────────── */
.vehicle-card-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 4px 0;
  border-top: 1px solid rgba(148, 180, 214, 0.1);
  border-bottom: 1px solid rgba(148, 180, 214, 0.1);
}

.vehicle-card-spec {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 14px 16px 13px;
  text-align: center;
}

.vehicle-card-spec + .vehicle-card-spec::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(86, 123, 189, 0.58), transparent);
  box-shadow: 0 0 14px rgba(39, 79, 146, 0.2);
}

.vehicle-card-spec-label {
  display: block;
  color: var(--text-tertiary);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.vehicle-card-spec-value {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 0.88rem;
}

/* ── Vehicle Card Footer ─────────────────────────────────────── */
.vehicle-card-footer {
  margin-top: auto;
  padding: 0 16px 16px;
}

.vehicle-card-price-suffix {
  color: var(--text-tertiary);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.vehicle-card-price-value {
  color: #9acbff;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: lining-nums;
  text-shadow: 0 0 18px rgba(231, 238, 251, 0.08);
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  margin-top: 46px;
  border-top: 1px solid rgba(148, 180, 214, 0.08);
  background:
    linear-gradient(180deg, rgba(5, 9, 16, 0), rgba(5, 9, 16, 0.5) 16%, rgba(5, 9, 16, 0.9));
}

.site-footer-brand {
  display: grid;
  gap: 18px;
  max-width: 390px;
}

.site-logo-image--footer {
  height: 68px;
  filter: drop-shadow(0 14px 30px rgba(3, 9, 21, 0.2));
}

.site-footer-brand p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

.site-footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e3efff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer-social-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.site-footer-social:hover,
.site-footer-social:focus-visible {
  color: #f3f7ff;
  text-shadow: 0 0 16px rgba(80, 132, 221, 0.18);
  outline: none;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 28px;
}

.site-wrap--footer {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.75fr);
  gap: 36px;
  align-items: start;
  padding-top: 34px;
  padding-bottom: 44px;
}

.site-footer-grid > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer-grid h3 {
  color: #edf3ff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer-grid a,
.site-footer-grid span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.site-footer-grid a:hover,
.site-footer-grid a:focus-visible {
  color: #f3f7ff;
  outline: none;
}

.vehicle-card-book {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font: inherit;
  width: 100%;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(158, 204, 255, 0.12), rgba(158, 204, 255, 0.02) 24%, rgba(158, 204, 255, 0) 44%),
    linear-gradient(180deg, #20487f 0%, #1c59b5 54%, #2c79f2 100%);
  box-shadow:
    0 14px 32px rgba(3, 10, 25, 0.5),
    0 6px 20px rgba(18, 54, 120, 0.24),
    0 0 28px rgba(20, 60, 150, 0.12),
    inset 0 1px 0 rgba(166, 204, 255, 0.16);
  transition:
    box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.vehicle-card-book::before {
  content: '';
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 20px;
  background:
    radial-gradient(circle at 20% 22%, rgba(60, 130, 240, 0.22), transparent 36%),
    radial-gradient(circle at 78% 78%, rgba(20, 70, 170, 0.48), transparent 46%);
  opacity: 0;
  transform: scale(0.95);
  filter: blur(18px);
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.vehicle-card:hover .vehicle-card-book {
  background:
    linear-gradient(145deg, rgba(176, 214, 255, 0.14), rgba(176, 214, 255, 0.03) 24%, rgba(176, 214, 255, 0) 44%),
    linear-gradient(180deg, #25508e 0%, #2463c4 54%, #3b88ff 100%);
  box-shadow:
    0 16px 36px rgba(3, 10, 25, 0.56),
    0 8px 28px rgba(20, 60, 150, 0.28),
    0 0 48px rgba(25, 75, 175, 0.2),
    inset 0 1px 0 rgba(178, 212, 255, 0.2);
}

.vehicle-card:hover .vehicle-card-book::before {
  opacity: 0.8;
  transform: scale(1);
}

/* ── Booking Modal ──────────────────────────────────────────── */
body.booking-modal-open {
  overflow: hidden;
}

body.mobile-calendar-open {
  overflow: hidden;
}

body.booking-gallery-open {
  overflow: hidden;
}

.booking-mobile-calendar[hidden] {
  display: none;
}

.booking-mobile-calendar {
  position: fixed;
  inset: 0;
  z-index: 100300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px;
  pointer-events: none;
}

.booking-mobile-calendar-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(38, 82, 164, 0.16), transparent 26%),
    rgba(2, 5, 10, 0.78);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-mobile-calendar-panel {
  position: relative;
  width: min(100%, 420px);
  max-height: min(82vh, 720px);
  border: 1px solid rgba(92, 132, 198, 0.22);
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12, 21, 34, 0.98), rgba(6, 11, 19, 0.98)),
    var(--surface);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.38),
    0 0 40px rgba(39, 79, 146, 0.15);
  transform: translateY(20px);
  opacity: 0;
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-mobile-calendar.is-open {
  pointer-events: auto;
}

.booking-mobile-calendar.is-open .booking-mobile-calendar-backdrop {
  opacity: 1;
}

.booking-mobile-calendar.is-open .booking-mobile-calendar-panel {
  transform: translateY(0);
  opacity: 1;
}

.booking-mobile-calendar-handle {
  width: 46px;
  height: 5px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: rgba(168, 188, 219, 0.3);
}

.booking-mobile-calendar-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px 12px;
  border-bottom: 1px solid rgba(148, 180, 214, 0.08);
}

.booking-mobile-calendar-kicker {
  color: #7ea0d8;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-mobile-calendar-head h3 {
  margin-top: 4px;
  font-size: 1rem;
}

.booking-mobile-calendar-done {
  min-width: 70px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(93, 141, 219, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(121, 176, 255, 0.11), rgba(121, 176, 255, 0.02) 30%, rgba(121, 176, 255, 0) 48%),
    linear-gradient(180deg, rgba(19, 36, 58, 0.96), rgba(10, 18, 30, 0.98));
  color: #eef4ff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.booking-mobile-calendar-body {
  overflow: auto;
}

.booking-mobile-calendar-time {
  padding: 12px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(148, 180, 214, 0.08);
  background:
    linear-gradient(180deg, rgba(10, 18, 30, 0.98), rgba(6, 11, 19, 0.98));
}

.booking-mobile-calendar-time-label {
  color: #8ea8ce;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-mobile-calendar-time-slider {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.booking-mobile-time-chip {
  flex: 0 0 auto;
  min-width: 92px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(92, 132, 198, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(121, 176, 255, 0.1), rgba(121, 176, 255, 0.02) 30%, rgba(121, 176, 255, 0) 48%),
    linear-gradient(180deg, rgba(19, 33, 53, 0.96), rgba(10, 18, 30, 0.98));
  color: #e8f0ff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  scroll-snap-align: center;
  cursor: pointer;
}

.booking-mobile-time-chip.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #4174c5, #234c97);
  box-shadow:
    0 10px 20px rgba(39, 79, 146, 0.22),
    0 0 18px rgba(39, 79, 146, 0.12);
}

.booking-mobile-time-chip:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

@media (max-width: 760px) {
  .booking-mobile-calendar-body .flatpickr-calendar {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100%;
    max-width: none;
    border: 0;
    border-radius: 0 0 26px 26px;
    box-shadow: none;
    background: transparent;
    transform: none !important;
    animation: none !important;
  }

  .booking-mobile-calendar-body .flatpickr-months {
    padding-top: 10px;
  }

  .booking-mobile-calendar-body .flatpickr-weekdays,
  .booking-mobile-calendar-body .dayContainer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .booking-mobile-calendar-body .dayContainer {
    padding-bottom: 18px;
  }

  .booking-mobile-calendar-body .flatpickr-day {
    max-width: none;
    height: 42px;
    line-height: 42px;
  }

  .booking-mobile-calendar-body .flatpickr-day.is-booked-day::after {
    display: none;
  }

  .booking-mobile-calendar-body .flatpickr-time {
    display: none;
  }

  .booking-mobile-calendar-body .flatpickr-time input,
  .booking-mobile-calendar-body .flatpickr-time .flatpickr-am-pm,
  .booking-mobile-calendar-body .flatpickr-current-month input.cur-year,
  .booking-mobile-calendar-body .flatpickr-current-month .flatpickr-monthDropdown-months {
    font-size: 16px;
  }
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 26px;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(30, 70, 140, 0.14), transparent 24%),
    radial-gradient(circle at 80% 80%, rgba(30, 70, 140, 0.12), transparent 28%),
    rgba(2, 5, 10, 0.76);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-modal-dialog {
  position: relative;
  width: min(1180px, 100%);
  height: min(90vh, 920px);
  max-height: min(90vh, 920px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(148, 180, 214, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 17, 27, 0.985), rgba(4, 8, 15, 0.985)),
    #050910;
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.52),
    0 0 72px rgba(22, 54, 120, 0.16);
  opacity: 0;
  transform: translateY(24px) scale(0.975);
  transition:
    opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-modal-dialog:focus,
.booking-modal-dialog:focus-visible {
  outline: none;
}

.booking-modal.is-open .booking-modal-backdrop {
  opacity: 1;
}

.booking-modal.is-open .booking-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.booking-modal.is-closing .booking-modal-backdrop {
  opacity: 0;
}

.booking-modal.is-closing .booking-modal-dialog {
  opacity: 0;
  transform: translateY(18px) scale(0.982);
}

.booking-submit-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(6, 10, 17, 0.62), rgba(3, 6, 12, 0.72));
  backdrop-filter: blur(7px);
}

.booking-submit-overlay-stack {
  display: grid;
  justify-items: center;
  gap: 12px;
  transform: translateY(-8px);
}

.booking-submit-overlay-stack p {
  color: #e6efff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-submit-spinner {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(154, 203, 255, 0.14);
  border-top-color: #64a0ff;
  box-shadow:
    0 0 24px rgba(100, 160, 255, 0.2),
    inset 0 0 12px rgba(100, 160, 255, 0.08);
  animation: bookingSubmitSpin 0.75s linear infinite;
}

@keyframes bookingSubmitSpin {
  to {
    transform: rotate(360deg);
  }
}

.booking-modal-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  flex: 1;
  min-height: 0;
  height: 100%;
}

.booking-modal-main {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-right: 1px solid rgba(148, 180, 214, 0.08);
}

.booking-modal-head {
  padding: 28px 30px 22px;
  border-bottom: 1px solid rgba(148, 180, 214, 0.08);
  background:
    linear-gradient(180deg, rgba(10, 16, 25, 0.92), rgba(7, 11, 18, 0.76));
}

.booking-modal-eyebrow,
.booking-step-kicker,
.review-card-eyebrow,
.booking-summary-kicker {
  color: #7ea7f0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-modal-headline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-top: 10px;
}

.booking-modal-headline h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.booking-modal-copy {
  margin-top: 10px;
  max-width: 560px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.booking-step-count {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #dce7f6;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-progress {
  position: relative;
  margin-top: 18px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.booking-progress-fill {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2d63bb, #4f8fff);
  box-shadow: 0 0 26px rgba(58, 110, 210, 0.32);
  transition: width 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-range-notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 170, 82, 0.3);
  background:
    linear-gradient(180deg, rgba(56, 31, 9, 0.94), rgba(28, 18, 8, 0.96));
  color: #ffe7cc;
  font-size: 0.86rem;
  line-height: 1.45;
  box-shadow:
    0 14px 30px rgba(3, 8, 16, 0.26),
    0 0 28px rgba(255, 166, 72, 0.14);
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.booking-range-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.booking-range-notice .material-symbols-rounded {
  font-size: 1.1rem;
  color: #ffb357;
}

.booking-step-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.booking-step-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 14px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(148, 180, 214, 0.08);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  color: #8192ab;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  appearance: none;
  transition:
    border-color 0.14s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.14s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.14s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.14s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.14s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-step-tab.is-active {
  color: #eff5ff;
  border-color: rgba(99, 145, 223, 0.3);
  background:
    linear-gradient(180deg, rgba(21, 36, 58, 0.92), rgba(10, 17, 27, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(67, 108, 182, 0.08);
}

.booking-step-tab.is-complete {
  color: #a9b8cf;
  border-color: rgba(82, 120, 192, 0.16);
}

.booking-step-tab:hover:not(.is-active),
.booking-step-tab:focus-visible:not(.is-active) {
  color: #c9dbf8;
  border-color: rgba(98, 147, 230, 0.32);
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(66, 112, 194, 0.12),
    0 0 20px rgba(43, 86, 168, 0.12),
    inset 0 1px 0 rgba(205, 225, 255, 0.04);
}

.booking-step-tab:focus-visible {
  outline: none;
}

.booking-wizard-form {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
  background:
    radial-gradient(circle at 50% -50%, rgb(29 112 255 / 25%), transparent 50%),
    linear-gradient(180deg, rgba(16, 28, 44, 0.34), rgba(10, 16, 26, 0) 220px);
}

.booking-wizard-form input:not([type='file']),
.booking-wizard-form textarea {
  border-color: rgb(135 173 229 / 26%);
  box-shadow: none;
}

.booking-wizard-form input:not([type='file']):hover,
.booking-wizard-form textarea:hover {
  border-color: rgba(103, 157, 246, 0.32);
  box-shadow:
    0 0 0 1px rgba(80, 134, 225, 0.1),
    0 0 16px rgba(47, 89, 171, 0.08);
}

.booking-wizard-form input:not([type='file']):focus,
.booking-wizard-form textarea:focus {
  border-color: rgba(103, 157, 246, 0.36);
  box-shadow:
    0 0 0 1px rgba(80, 134, 225, 0.14),
    0 0 0 3px rgba(73, 128, 223, 0.1),
    0 0 18px rgba(47, 89, 171, 0.1);
}

.booking-wizard-form select {
  min-height: 48px;
  padding: 12px 14px;
  padding-right: 44px;
  border-radius: 14px;
  border: 1px solid rgba(72, 126, 219, 0.26);
  background:
    linear-gradient(145deg, rgba(115, 172, 255, 0.08), rgba(115, 172, 255, 0.01) 28%, rgba(115, 172, 255, 0) 44%),
    linear-gradient(180deg, rgba(15, 28, 45, 0.98), rgba(9, 17, 28, 0.98)),
    var(--bg-raised);
  color: #d7e2f3;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow:
    inset 0 1px 0 rgba(202, 224, 255, 0.06),
    inset 0 0 0 1px rgba(71, 126, 219, 0.07);
  appearance: none;
  -webkit-appearance: none;
  margin-top: 6px;
  background-image:
    linear-gradient(45deg, transparent 50%, #7ea0d8 50%),
    linear-gradient(135deg, #7ea0d8 50%, transparent 50%);
  background-position:
    calc(100% - 28px) calc(50% - 2px),
    calc(100% - 23px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  transition:
    border-color 0.14s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.14s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.14s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.14s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-wizard-form select:hover,
.booking-wizard-form select:focus-visible {
  border-color: rgba(103, 157, 246, 0.38);
  box-shadow:
    0 0 0 1px rgba(80, 134, 225, 0.14),
    0 0 0 3px rgba(73, 128, 223, 0.12),
    0 0 20px rgba(47, 89, 171, 0.1),
    inset 0 1px 0 rgba(202, 224, 255, 0.06),
    inset 0 0 0 1px rgba(71, 126, 219, 0.07);
}

.booking-wizard-form select:focus-visible {
  outline: none;
}

.booking-wizard-scroll {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 28px 30px 18px;
}

.booking-step-panel {
  display: none;
}

.booking-step-panel.is-active {
  display: block;
  animation: bookingStepIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.booking-step-header {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.booking-step-header h3 {
  font-size: 1.58rem;
  line-height: 1;
}

.booking-step-header p:last-child {
  color: var(--text-secondary);
  max-width: 560px;
  font-size: 0.94rem;
}

.booking-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-step-grid--timing {
  margin-bottom: 16px;
}

.booking-step-grid--single {
  grid-template-columns: 1fr;
}

.booking-step-grid--documents {
  grid-template-columns: 1fr;
}

.booking-step-grid + .booking-step-grid--documents {
  margin-top: 12px;
}

.booking-field--wizard .booking-field-label {
  margin-bottom: 7px;
}

.booking-picker-input--modal {
  min-height: 54px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(121, 176, 255, 0.08), rgba(121, 176, 255, 0.01) 28%, rgba(121, 176, 255, 0) 44%),
    linear-gradient(180deg, rgba(15, 28, 45, 0.98), rgba(9, 17, 28, 0.98)),
    var(--bg-raised);
  box-shadow:
    inset 0 1px 0 rgba(202, 224, 255, 0.06),
    inset 0 0 0 1px rgba(71, 126, 219, 0.08);
}

.booking-step-block {
  margin-top: 20px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(148, 180, 214, 0.09);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(10, 17, 27, 0.8), rgba(7, 11, 18, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.booking-step-block--customer {
  padding-top: 20px;
}

.booking-step-labelrow {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.booking-step-labelrow span {
  color: #edf3fc;
  font-size: 0.95rem;
  font-weight: 700;
}

.booking-step-labelrow p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.upload-field {
  display: grid;
  gap: 8px;
}

.upload-field span {
  display: block;
  color: #edf3fc;
  font-size: 0.82rem;
  font-weight: 600;
}

.upload-field input[type='file'] {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px dashed rgba(106, 141, 207, 0.22);
  background:
    linear-gradient(180deg, rgba(13, 22, 34, 0.96), rgba(8, 14, 23, 0.96)),
    var(--bg-raised);
  color: #cfdcf2;
  font-size: 0.84rem;
}

.upload-field input[type='file']::file-selector-button {
  margin-right: 12px;
  padding: 8px 12px;
  border: 0;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(158, 204, 255, 0.12), rgba(158, 204, 255, 0.02) 24%, rgba(158, 204, 255, 0) 44%),
    linear-gradient(180deg, #20487f 0%, #1c59b5 54%, #2c79f2 100%);
  color: #f2f7ff;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.upload-field input[type='file']:focus {
  border-color: rgba(82, 132, 225, 0.4);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice-card-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card-copy {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(148, 180, 214, 0.12);
  background:
    linear-gradient(180deg, rgba(13, 21, 34, 0.94), rgba(9, 14, 23, 0.94));
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    transform var(--transition);
}

.choice-card:hover .choice-card-copy {
  border-color: rgba(91, 134, 212, 0.2);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.choice-card-input:checked + .choice-card-copy {
  border-color: rgba(90, 136, 220, 0.34);
  background:
    linear-gradient(180deg, rgba(17, 31, 49, 0.97), rgba(10, 17, 28, 0.97));
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    0 0 40px rgba(34, 76, 154, 0.16),
    inset 0 1px 0 rgba(180, 210, 255, 0.08);
  transform: translateY(-1px);
}

.choice-card-eyebrow {
  color: #7d9bc7;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.choice-card strong {
  color: #f3f7ff;
  font-size: 1rem;
  line-height: 1.12;
}

.choice-card small {
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.45;
}

.choice-card--compact .choice-card-copy {
  min-height: 128px;
}

.driver-stack {
  display: grid;
  gap: 14px;
}

.driver-card {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(148, 180, 214, 0.12);
  background:
    linear-gradient(180deg, rgba(12, 20, 31, 0.94), rgba(8, 13, 22, 0.94));
}

.driver-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.driver-card-head p {
  color: #e8effb;
  font-size: 0.92rem;
  font-weight: 700;
}

.driver-remove {
  border: 0;
  padding: 0;
  background: transparent;
  color: #f17b7b;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition), text-shadow var(--transition);
}

.driver-remove:hover {
  color: #ff9b9b;
  text-shadow: 0 0 18px rgba(241, 123, 123, 0.28);
}

.booking-driver-btn {
  margin-top: 14px;
}

.booking-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px 24px;
  border-top: 1px solid rgba(148, 180, 214, 0.08);
  background:
    linear-gradient(180deg, rgba(7, 11, 18, 0.72), rgba(7, 10, 16, 0.94));
}

.booking-modal-actions-spacer {
  flex: 1;
}

.booking-nav-btn {
  min-width: 152px;
  letter-spacing: 0.1em;
}

.booking-summary {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 0;
  padding: 28px 26px 26px;
  background:
    linear-gradient(180deg, rgba(7, 12, 20, 0.98), rgba(4, 8, 15, 0.98));
}

.booking-summary-vehicle {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(148, 180, 214, 0.12);
  background:
    linear-gradient(180deg, rgba(12, 20, 32, 0.92), rgba(8, 13, 21, 0.92));
}

.booking-summary-gallery {
  position: relative;
  width: 100%;
  height: 108px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.booking-summary-gallery-stack {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.booking-summary-gallery-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(148, 180, 214, 0.18);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    filter 0.24s ease;
}

.booking-summary-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), filter 0.24s ease;
}

.booking-summary-gallery:hover .booking-summary-gallery-card {
  border-color: rgba(121, 177, 255, 0.28);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(121, 177, 255, 0.14),
    0 0 26px rgba(42, 104, 210, 0.16);
  transform: translateY(-2px);
  filter: saturate(1.03);
}

.booking-summary-gallery:hover .booking-summary-gallery-card img {
  transform: scale(1.018);
  filter: brightness(1.03);
}

.booking-summary-gallery-count {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 11, 18, 0.8);
  color: rgba(245, 248, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.booking-summary-titleblock {
  min-width: 0;
}

.booking-summary-titleblock h3 {
  margin-top: 10px;
  font-size: 1.35rem;
  line-height: 1;
}

.booking-summary-subtitle {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.booking-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.booking-summary-meta {
  display: grid;
  gap: 7px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(148, 180, 214, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.booking-summary-meta span {
  color: var(--text-tertiary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-summary-meta strong {
  color: #f5f8ff;
  font-size: 0.9rem;
  line-height: 1.35;
}

.booking-summary-pricing {
  padding: 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(148, 180, 214, 0.12);
  background:
    linear-gradient(180deg, rgba(10, 17, 27, 0.92), rgba(7, 11, 18, 0.92));
}

.booking-summary-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.booking-summary-header p {
  color: #dfeafc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-summary-header span {
  display: block;
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.booking-summary-note {
  margin-top: auto;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(148, 180, 214, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: #a9bad1;
  font-size: 0.86rem;
  line-height: 1.55;
}

.booking-gallery-modal[hidden] {
  display: none !important;
}

.booking-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-gallery-modal.is-closing {
  opacity: 0;
  pointer-events: none;
}

.booking-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 7, 14, 0.78);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.booking-gallery-modal.is-open .booking-gallery-backdrop {
  opacity: 1;
}

.booking-gallery-modal.is-closing .booking-gallery-backdrop {
  opacity: 0;
}

.booking-gallery-card {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(148, 180, 214, 0.12);
  background: linear-gradient(180deg, rgba(7, 12, 20, 0.98), rgba(4, 8, 15, 0.98));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transform: translateY(26px) scale(0.982);
  transition:
    opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-gallery-modal.is-open .booking-gallery-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.booking-gallery-modal.is-closing .booking-gallery-card {
  opacity: 0;
  transform: translateY(18px) scale(0.987);
}

.booking-gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}

.booking-gallery-head h3 {
  margin-top: 8px;
  font-size: 1.4rem;
}

.booking-gallery-close {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 180, 214, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 248, 255, 0.92);
  cursor: pointer;
}

.booking-gallery-stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.booking-gallery-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(148, 180, 214, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 248, 255, 0.92);
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.booking-gallery-arrow[disabled] {
  opacity: 0.45;
  cursor: default;
}

.booking-gallery-arrow:focus,
.booking-gallery-arrow:focus-visible,
.booking-gallery-close:focus,
.booking-gallery-close:focus-visible,
.booking-gallery-thumb:focus,
.booking-gallery-thumb:focus-visible {
  outline: none;
}

.booking-gallery-arrow:focus-visible,
.booking-gallery-close:focus-visible {
  border-color: rgba(121, 177, 255, 0.28);
  box-shadow: 0 0 0 3px rgba(71, 132, 226, 0.14);
}

.booking-gallery-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(148, 180, 214, 0.1);
  aspect-ratio: 1.55;
  background: rgba(255, 255, 255, 0.03);
  --gallery-slide-count: 1;
  --gallery-active-index: 0;
}

.booking-gallery-track {
  display: flex;
  width: calc(var(--gallery-slide-count) * 100%);
  height: 100%;
  will-change: transform;
  transform: translate3d(calc(var(--gallery-active-index) * -100% / var(--gallery-slide-count)), 0, 0);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-gallery-slide {
  flex: 0 0 calc(100% / var(--gallery-slide-count));
  min-width: calc(100% / var(--gallery-slide-count));
  height: 100%;
}

.booking-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.booking-gallery-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}

.booking-gallery-thumb {
  flex: 0 0 96px;
  width: 96px;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(148, 180, 214, 0.12);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  aspect-ratio: 1.25;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.booking-gallery-thumb:hover {
  transform: translateY(-1px);
  border-color: rgba(148, 180, 214, 0.2);
}

.booking-gallery-thumb.is-active {
  border-color: rgba(97, 171, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(14, 24, 42, 0.96), rgba(9, 15, 28, 0.98));
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(121, 177, 255, 0.14),
    0 0 18px rgba(54, 122, 225, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.booking-gallery-thumb.is-active img {
  filter: brightness(1.04) saturate(1.04);
}

.booking-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.booking-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #eff5ff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.booking-modal-close span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  transform: translateY(-1px);
}

.booking-modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(36, 80, 155, 0.18);
  transform: rotate(90deg);
}

.review-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-card,
.review-section {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(148, 180, 214, 0.1);
  background:
    linear-gradient(180deg, rgba(10, 17, 27, 0.9), rgba(7, 11, 18, 0.9));
}

.review-card h4,
.review-section h4 {
  margin-top: 10px;
  font-size: 1.05rem;
}

.review-card p,
.review-section p {
  margin-top: 8px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.review-section {
  display: grid;
  gap: 18px;
  margin-top: 14px;
}

.review-note {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: #b5c3d8;
  line-height: 1.6;
}

/* ── Detail Page Layout ──────────────────────────────────────── */
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 14px;
}

.panel {
  border: 1px solid rgba(148, 180, 214, 0.12);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 24, 38, 0.9), rgba(10, 16, 26, 0.96));
  padding: 18px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.gallery-main {
  width: 100%;
  border-radius: var(--radius-sm);
  height: 340px;
  object-fit: cover;
}

.gallery-strip {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  overflow: auto;
}

.gallery-strip img {
  width: 88px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-strip img:hover {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(39, 79, 146, 0.18);
}

.price-tag {
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 700;
}

/* ── Booking Wizard Steps ────────────────────────────────────── */
.wizard-step {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 16px;
}

.wizard-step h4 {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stack-sm > * + * { margin-top: 8px; }
.stack-md > * + * { margin-top: 14px; }

/* ── Sticky Summary ──────────────────────────────────────────── */
.sticky-summary {
  position: sticky;
  top: 14px;
}

.sticky-summary h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.summary-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.summary-line span { color: var(--text-secondary); }
.summary-line strong { color: var(--text); font-weight: 600; }

.summary-total {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 4px;
  font-weight: 700;
  align-items: baseline;
}

.summary-total span {
  color: #3a7fbd;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.summary-total strong {
  color: #43a6ff;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  text-shadow: 0 0 22px rgba(67, 166, 255, 0.2);
}

.summary-deposit {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  align-items: baseline;
}

.summary-deposit span {
  color: #c76532;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-deposit strong {
  color: #c76532;
  font-size: 0.96rem;
  font-weight: 700;
  text-shadow: 0 0 18px rgba(199, 101, 50, 0.16);
}

/* ── Chips ───────────────────────────────────────────────────── */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  background: var(--bg-raised);
  transition: border-color var(--transition);
}

.chip:hover { border-color: var(--border-hover); }

/* ── Feedback ────────────────────────────────────────────────── */
.inline-feedback {
  color: #f09090;
  background: rgba(229, 83, 75, 0.08);
  border: 1px solid rgba(229, 83, 75, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.85rem;
}

.muted { color: var(--text-secondary); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 980px) {
  .site-nav {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
  }

  .site-nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px 22px;
  }

  .contact-band {
    gap: 16px;
  }

  .contact-inline {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: stretch;
  }

  .contact-inline-divider {
    display: none;
  }

  .contact-inline-item {
    min-height: 58px;
    justify-self: stretch;
    justify-content: flex-start;
  }

  .contact-inline-copy {
    text-align: left;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .site-wrap--footer {
    grid-template-columns: 1fr;
  }

  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .sticky-summary {
    position: static;
  }

  .booking-modal {
    padding: 18px;
  }

  .booking-modal-dialog {
    height: calc(100vh - 36px);
    max-height: calc(100vh - 36px);
  }

  .booking-modal-shell {
    display: flex;
    flex-direction: column;
    overflow: auto;
  }

  .booking-modal-main {
    flex: 0 0 auto;
    border-right: 0;
    border-bottom: 1px solid rgba(148, 180, 214, 0.08);
  }

  .booking-wizard-form,
  .booking-wizard-scroll {
    min-height: auto;
  }

  .booking-wizard-scroll {
    overflow: visible;
  }

  .booking-summary {
    flex: 0 0 auto;
    gap: 14px;
  }

  .choice-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-wrap {
    padding: 14px;
  }

  .site-wrap--chrome {
    padding-bottom: 8px;
  }

  .site-nav-links {
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .filters {
    grid-template-columns: 1fr;
  }

  .booking-field,
  .booking-action {
    min-height: auto;
  }

  .booking-field .booking-picker-input,
  .booking-select-wrap select {
    margin-top: 0;
  }

  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 34px 20px 28px;
  }

  .hero-location-row {
    gap: 8px 14px;
    font-size: 0.74rem;
  }

  .hero h1 span {
    display: block;
  }

  .hero-video-shell {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 42%;
    border-top-right-radius: 0;
    border-top-left-radius: 24px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    opacity: 0.75;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 14%,
      rgba(0, 0, 0, 0.38) 28%,
      rgba(0, 0, 0, 0.72) 42%,
      #000 58%,
      #000 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 14%,
      rgba(0, 0, 0, 0.38) 28%,
      rgba(0, 0, 0, 0.72) 42%,
      #000 58%,
      #000 100%
    );
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-tags {
    gap: 8px 14px;
  }

  .hero-tag {
    font-size: 0.62rem;
  }

  .contact-inline-item {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: auto;
    padding: 6px 0;
    column-gap: 12px;
  }

  .contact-inline-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .contact-map-slab {
    padding: 0;
  }

  .contact-map {
    min-height: 208px;
  }

  .section-head h2 {
    font-size: 1.5rem;
  }

  .process-card {
    min-height: 0;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-card-top {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .vehicle-card-specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vehicle-card-spec + .vehicle-card-spec::before {
    top: 18%;
    left: 0;
    right: auto;
    bottom: 18%;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(86, 123, 189, 0.58), transparent);
  }

  .vehicle-card-spec {
    padding: 12px 10px;
  }

  .vehicle-card-spec-value {
    font-size: 0.82rem;
  }

  .booking-modal {
    padding: 12px;
  }

  .booking-modal-dialog {
    height: calc(100vh - 24px);
    max-height: calc(100vh - 24px);
    border-radius: 24px;
  }

  .booking-modal-head {
    padding: 22px 18px 18px;
  }

  .booking-modal-headline {
    display: grid;
  }

  .booking-step-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-range-notice {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 14px);
    left: 50%;
    width: min(calc(100vw - 28px), 420px);
    margin-top: 0;
    padding: 12px 14px;
    z-index: 100200;
    pointer-events: none;
    transform: translate(-50%, -10px);
  }

  .booking-range-notice.is-visible {
    transform: translate(-50%, 0);
  }

  .booking-wizard-scroll {
    padding: 22px 18px 16px;
  }

  .booking-step-grid,
  .choice-grid,
  .choice-grid--compact,
  .review-card-grid,
  .booking-summary-grid {
    grid-template-columns: 1fr;
  }

  .booking-step-block {
    padding: 16px;
  }

  .booking-modal-actions {
    padding: 16px 18px 20px;
    flex-wrap: wrap;
  }

  .booking-modal-actions-spacer {
    display: none;
  }

  .booking-nav-btn {
    width: 100%;
  }

  .booking-summary {
    padding: 20px 18px 18px;
  }

  .booking-summary-vehicle {
    grid-template-columns: 1fr;
  }

  .booking-summary-gallery {
    height: 180px;
  }

  .booking-gallery-card {
    padding: 18px;
    border-radius: 24px;
  }

  .booking-gallery-stage {
    grid-template-columns: 1fr;
  }

  .booking-gallery-arrow {
    display: none;
  }

  .booking-modal-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 1.55rem;
  }
}

@media (max-width: 980px) {
  .faq-hero {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .faq-host-band {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .faq-host-actions {
    justify-content: flex-start;
  }

  .faq-list--inline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .booking-range-notice {
    width: min(calc(100vw - 24px), 360px);
    border-radius: 16px;
    padding: 12px 13px;
    font-size: 0.83rem;
  }

  .faq-hero {
    padding: 26px 18px;
  }

  .faq-shell {
    border-radius: 22px;
  }

  .faq-item summary {
    padding: 18px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 12px 18px 18px;
  }

  .faq-group-head {
    margin-bottom: 14px;
  }

  .faq-host-band {
    padding: 22px 18px;
  }
}

@media (max-width: 479px) {
  .hero h1 span:last-child {
    white-space: normal;
    width: auto;
  }
}

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(148, 180, 214, 0.12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(148, 180, 214, 0.22); }
