/* ═══════════════════════════════════════════════
   NEW CLASS LIMO — Global Stylesheet
   Design: Blacklane-inspired Premium White
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --white:      #ffffff;
  --off-white:  #faf9f7;
  --gray-50:    #f7f7f7;
  --gray-100:   #eeeeee;
  --gray-300:   #d1d1d1;
  --gray-400:   #9ca3af;
  --gray-600:   #6b7280;
  --text:       #1a1a1a;
  --text2:      #4a4a4a;
  --text3:      #767676;
  --blue:       #1a56db;
  --blue-dark:  #1244b8;
  --blue-light: #e8effd;
  --border:     #e5e5e5;
  --radius:     6px;
  --radius-lg:  12px;
  --nav-h:      72px;
  --transition: 0.2s ease;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* overflow-x: clip (not hidden) on purpose — clip does not establish a new
   scroll container the way hidden/auto do, so it blocks the sideways drag
   on mobile without breaking position:sticky on descendants (hidden on body
   broke the step-photo sticky panels earlier because it turns body into its
   own nested scroller). Applying it to both html and body is the reliable
   fix for mobile Safari's horizontal rubber-band drag; html alone was not
   enough. */
html { scroll-behavior: smooth; background: var(--white); color-scheme: light; overflow-x: clip; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ── */
.serif { font-family: 'Playfair Display', Georgia, serif; }
h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; color: var(--text); }
h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 500; line-height: 1.2; color: var(--text); }
h3 { font-size: 1.2rem; font-weight: 600; color: var(--text); }
h4 { font-size: 1rem; font-weight: 600; color: var(--text); }
p  { color: var(--text2); line-height: 1.75; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }

/* ── Breadcrumb ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text3); padding: 20px 0; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--text2); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--gray-300);
}
.btn-secondary:hover { border-color: var(--text); background: var(--gray-50); }
.btn-dark {
  background: var(--text);
  color: #fff;
}
.btn-dark:hover { background: #333; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
}
.nav-logo:hover { color: var(--blue); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text2);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { margin-left: 8px; }
.nav-burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--text2);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--text); }
.mobile-nav a[href^="tel"] {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff !important;
  border-radius: 10px;
  border-bottom: none;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 0;
  letter-spacing: 0.01em;
}

/* ── Services dropdown (desktop) ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text2);
  padding: 0;
  transition: color var(--transition);
}
.nav-dropdown-toggle:hover { color: var(--text); }
.nav-dropdown-toggle svg { transition: transform 0.2s ease; }
.nav-dropdown.open .nav-dropdown-toggle svg,
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-transparent .nav-dropdown-toggle { color: rgba(255,255,255,0.85); }
.nav-transparent .nav-dropdown-toggle:hover { color: #fff; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1001;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 500;
  color: var(--text2) !important;
  white-space: nowrap;
}
.nav-dropdown-menu a::after { content: none !important; }
.nav-dropdown-menu a:hover { background: var(--blue-light); color: var(--blue) !important; }

/* ── Services dropdown (mobile accordion) ── */
.mobile-nav-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  border-bottom: 1px solid var(--gray-100);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  color: var(--text2);
  cursor: pointer;
}
.mobile-nav-toggle svg { transition: transform 0.2s ease; flex-shrink: 0; }
.mobile-nav-group.open .mobile-nav-toggle { color: var(--text); }
.mobile-nav-group.open .mobile-nav-toggle svg { transform: rotate(180deg); }
.mobile-nav-submenu {
  display: none;
  flex-direction: column;
  padding-left: 14px;
}
.mobile-nav-group.open .mobile-nav-submenu { display: flex; }
.mobile-nav-submenu a {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--text2);
}
.mobile-nav-submenu a:last-child { border-bottom: none; }

/* ── PAGE OFFSET ── */
.page-top { padding-top: var(--nav-h); }

/* ── TRANSPARENT NAV (homepage hero) ── */
.nav-transparent {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}
.nav-transparent .nav-logo { color: #fff; }
.nav-transparent .nav-links a { color: rgba(255,255,255,0.85); }
.nav-transparent .nav-links a:hover { color: #fff; }
.nav-transparent .nav-cta a:first-child { color: rgba(255,255,255,0.85); }
.nav-phone { font-size: 14px; font-weight: 500; color: var(--text2); transition: color 0.2s; }
.nav-phone:hover { color: var(--blue); }
.nav-transparent .nav-phone { color: rgba(255,255,255,0.9); }
.nav-transparent .nav-phone:hover { color: #fff; }
.nav-transparent .btn-primary { background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.5); color: #fff; }
.nav-transparent .btn-primary:hover { background: rgba(255,255,255,0.3); }
.nav-transparent .nav-burger span { background: #fff; }

/* ══════════════════════════════════════
   PREMIUM EFFECTS & TRANSITIONS
   ══════════════════════════════════════ */

/* Page fade-in */
body { opacity: 0; transition: opacity 0.45s ease; }
body.page-ready { opacity: 1; }

/* Smooth scroll */
html { scroll-behavior: smooth; background: var(--white); color-scheme: light; }

/* Nav link animated underline */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--blue);
  transition: width 0.28s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Button press micro-animation */
.btn { transition: background 0.22s ease, transform 0.15s ease, box-shadow 0.22s ease, border-color 0.22s ease; }
.btn:active { transform: scale(0.97); }

/* Card lift on hover */
.feature-card {
  transition: transform 0.28s cubic-bezier(.4,0,.2,1), box-shadow 0.28s cubic-bezier(.4,0,.2,1);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.vehicle-card {
  transition: transform 0.28s cubic-bezier(.4,0,.2,1), box-shadow 0.28s cubic-bezier(.4,0,.2,1);
}
.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.12);
}
.testimonial-card {
  transition: transform 0.28s cubic-bezier(.4,0,.2,1), box-shadow 0.28s cubic-bezier(.4,0,.2,1);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
}
.area-card {
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.area-card:hover { transform: scale(1.02); }

/* Staggered reveal delay */
[data-reveal]:nth-child(2) { transition-delay: 0.08s; }
[data-reveal]:nth-child(3) { transition-delay: 0.16s; }
[data-reveal]:nth-child(4) { transition-delay: 0.24s; }
[data-reveal]:nth-child(5) { transition-delay: 0.32s; }
[data-reveal]:nth-child(6) { transition-delay: 0.40s; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
  transform: scale(1.02);
  transition: transform 9s cubic-bezier(.2,0,.4,1);
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.6) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 60px;
}
/* Centered hero layout */
.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: 99px;
  margin-bottom: 28px;
}
.hero-eyebrow svg { width: 14px; height: 14px; flex-shrink: 0; }
.hero-headline {
  color: #fff;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 1.06;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
/* Rotating word */
.hero-word-wrap {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  width: 5.2em;
  text-align: left;
  padding: 0 0.12em 0.05em 0;
}
/* Desktop: headline stays on one line — the word slot above is a fixed
   width (sized to the longest rotating word, "confidence") so "Arrive
   in" never shifts as shorter/longer words cycle through. */
@media (max-width: 1024px) {
  /* Tablet/phone: stack "Arrive in" and the word onto separate lines
     instead of relying on natural wrap, which wrapped inconsistently
     depending on word length. display:block (not a <br>) so the break
     is governed by normal box layout rather than <br> UA quirks. */
  .hero-word-line { display: block; text-align: right; padding-right: 8%; }
  /* "Arrive in" reads as the dominant line; the rotating word is the
     smaller, offset accent beneath it — breaks the flat centered-stack
     look into a more editorial, asymmetric headline. */
  .hero-headline-main { display: block; text-align: left; font-size: 1.14em; }
}
.hero-word {
  display: inline-block;
  font-style: italic;
  font-weight: 700;
  padding-right: 0.08em;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@keyframes wordExit {
  from { opacity: 1; transform: translateY(0); filter: blur(0px); }
  to   { opacity: 0; transform: translateY(-50%); filter: blur(10px); }
}
@keyframes wordEnter {
  from { opacity: 0; transform: translateY(50%); filter: blur(10px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0px); }
}
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.btn-hero-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.25);
}
.hero-trust span {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Booking Widget (right card) ── */
.book-widget {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  overflow: hidden;
  animation: widgetRise 0.7s cubic-bezier(.2,0,.2,1) 0.3s both;
}
@keyframes widgetRise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.book-widget-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.book-tab {
  flex: 1;
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: none;
  color: var(--text3);
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
}
.book-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(.4,0,.2,1);
}
.book-tab.active { color: var(--text); font-weight: 600; }
.book-tab.active::after { transform: scaleX(1); }
.book-widget-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; }

/* Book fields */
.book-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 14px;
  background: var(--gray-50);
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.book-field:focus-within { border-color: var(--blue); background: #fff; }
.book-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text3);
  pointer-events: none;
}
.book-field input, .book-field select {
  border: none;
  background: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  width: 100%;
  outline: none;
  padding: 0;
}
.book-field input::placeholder { color: var(--gray-400); }
.book-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* Flatpickr override to match site style */
.flatpickr-input { cursor: pointer; }
.flatpickr-calendar {
  border-radius: 12px !important;
  box-shadow: 0 16px 56px rgba(0,0,0,0.18) !important;
  border: 1px solid var(--border) !important;
  font-family: 'DM Sans', sans-serif !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
}
.flatpickr-day:hover { background: var(--blue-light) !important; }
.flatpickr-months .flatpickr-month { background: var(--white) !important; }
.flatpickr-current-month { color: var(--text) !important; }
.flatpickr-weekday { color: var(--text3) !important; }

/* Custom time select inside book-field */
.time-selects { display: flex; gap: 4px; align-items: center; }
.time-selects select {
  border: none;
  background: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  padding: 0 2px;
}
.time-sep { color: var(--text3); font-size: 14px; font-weight: 600; }

.book-note { font-size: 12px; color: var(--text3); text-align: center; padding: 4px 0; }

/* Duration field (hidden by default) */
.book-duration { display: none; }

/* Autocomplete dropdown tweak */
.pac-container {
  border-radius: 10px !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15) !important;
  border: 1px solid var(--border) !important;
  font-family: 'DM Sans', sans-serif !important;
  margin-top: 4px !important;
}
.pac-item { padding: 10px 16px !important; font-size: 14px !important; }
.pac-item:hover { background: var(--gray-50) !important; }
.pac-item-selected { background: var(--blue-light) !important; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.8); margin-top: 12px; font-size: 1.1rem; }

/* ── Page Hero ── */
.bl-hero { display: block; width: 100%; }
.bl-hero-img {
  display: block;
  width: 100%;
  position: relative;
  height: 520px;
  overflow: hidden;
}
.bl-hero-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.bl-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.1) 100%);
}
.bl-hero-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 32px;
}
.bl-hero-text h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; }
.bl-hero-text p { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-top: 14px; max-width: 560px; }
@media (max-width: 768px) {
  .bl-hero-img { height: 320px; }
  .bl-hero-text { padding: 32px 20px; }
}

/* ── Split Hero (fleet + service pages) ── */
.split-hero {
  display: flex;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}
.split-hero-left {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 72px 72px;
  background: #faf9f7;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: heroFadeUp 0.7s ease-out 0.2s forwards;
}
.split-hero-left::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--blue) 30%, var(--blue) 70%, transparent);
}
.split-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  align-self: flex-start;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeUp 0.6s ease-out 0.3s forwards;
}
.split-hero-badge svg { width: 12px; height: 12px; flex-shrink: 0; }
.split-hero-left h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 4.5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeUp 0.6s ease-out 0.45s forwards;
}
.split-hero-rule {
  width: 40px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeUp 0.6s ease-out 0.6s forwards;
}
.split-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text2);
  max-width: 360px;
  margin-bottom: 36px;
  font-weight: 400;
  opacity: 0;
  animation: heroFadeUp 0.6s ease-out 0.7s forwards;
}
.split-hero-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  margin-bottom: 44px;
  opacity: 0;
  animation: heroFadeUp 0.6s ease-out 0.8s forwards;
  transition: background 0.2s, gap 0.2s;
  box-shadow: 0 4px 14px rgba(26,86,219,0.3);
}
.split-hero-cta:hover { background: var(--blue-dark); gap: 14px; }
.split-hero-cta svg { width: 15px; height: 15px; }
.split-hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  opacity: 0;
  animation: heroFadeUp 0.6s ease-out 0.95s forwards;
}
.split-stat {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-right: 20px;
  border-right: 1px solid var(--border);
}
.split-stat:last-child { border-right: none; padding-right: 0; padding-left: 20px; }
.split-stat:nth-child(2) { padding-left: 20px; }
.split-stat-icon {
  width: 32px;
  height: 32px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.split-stat-icon svg { width: 15px; height: 15px; color: var(--blue); }
.split-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.split-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  font-weight: 500;
}
.split-hero-right {
  width: 55%;
  position: relative;
  overflow: hidden;
  animation: heroReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}
.split-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 0;
  animation: heroFadeIn 1s ease-out 0.6s forwards;
}
.split-hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,249,247,0.25) 0%, transparent 25%);
  z-index: 1;
}
.split-hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15) 0%, transparent 40%);
  z-index: 1;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  to { opacity: 1; }
}
@keyframes heroReveal {
  from { clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); }
  to   { clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%); }
}
@media (max-width: 768px) {
  .split-hero { flex-direction: column; min-height: auto; }
  .split-hero-left { width: 100%; padding: 48px 24px 40px; order: 2; }
  .split-hero-left::before { display: none; }
  .split-hero-right { width: 100%; min-height: 240px; order: 1; clip-path: none; animation: none; }
  .split-hero-right img { opacity: 1; animation: none; }
  .split-stat:nth-child(2) { padding-left: 16px; }
  .split-stat:last-child { padding-left: 16px; }
  .split-stat { padding-right: 16px; }
}

/* ── Continuous "living" Ken Burns (service pages + contact hero) ── */
@keyframes heroKenBurns {
  0%   { transform: scale(1.06) translate(0%, 0%); }
  50%  { transform: scale(1.12) translate(-1.2%, 0.8%); }
  100% { transform: scale(1.06) translate(0%, 0%); }
}
.split-hero-right img.img-kenburns {
  animation: heroFadeIn 1s ease-out 0.6s forwards, heroKenBurns 24s ease-in-out 0.6s infinite;
}
.bl-hero-img img.img-kenburns {
  animation: heroKenBurns 26s ease-in-out infinite;
}
.hero-stat-overlay-bg img.img-kenburns,
.hero-romantic-bg img.img-kenburns {
  animation: heroKenBurns 28s ease-in-out infinite;
}
.hero-editorial-card img.img-kenburns,
.hero-calm-img-wrap img.img-kenburns,
.hero-card-split-media img.img-kenburns,
.hero-card-banner img.img-kenburns {
  animation: heroKenBurns 30s ease-in-out infinite;
}
@media (max-width: 768px) {
  .split-hero-right img.img-kenburns { animation: none; }
}

/* ── Fade + scale-up on load (Service Areas hero) ── */
@keyframes heroFadeScale {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.bl-hero-img img.img-fade-scale {
  animation: heroFadeScale 1s ease-out both;
}

/* ── Parallax hero image (About page split-hero) ── */
.split-hero-right.has-parallax img.parallax-bg {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .split-hero-right.has-parallax img.parallax-bg { position: static; top: 0; height: 100%; }
}

/* ══════════════════════════════════════
   PAGE-DISTINCT HERO SYSTEMS
   ══════════════════════════════════════ */

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

/* ── Hero: Stat overlay (Fleet) ── */
.hero-stat-overlay { position: relative; min-height: clamp(600px, 48vw, 780px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-stat-overlay-bg { position: absolute; inset: 0; z-index: 0; }
.hero-stat-overlay-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-stat-overlay::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(6,6,12,0.72) 0%, rgba(6,6,12,0.38) 42%, transparent 68%),
    linear-gradient(180deg, rgba(10,10,18,0.2) 0%, rgba(10,10,18,0.85) 100%);
}
.hero-stat-overlay-content { position: relative; z-index: 2; width: 100%; max-width: 1280px; margin: 0 auto; padding: 130px 40px 56px; }
.hero-stat-overlay-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28);
  color: #fff; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border-radius: 99px;
  opacity: 0; animation: heroFadeUp 0.6s ease-out 0.2s forwards;
}
.hero-stat-overlay-badge svg { width: 12px; height: 12px; }
.hero-stat-overlay h1 {
  color: #fff; font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.03; letter-spacing: -0.02em;
  margin-top: 18px; max-width: 720px;
  text-shadow: 0 3px 16px rgba(0,0,0,0.4);
  opacity: 0; animation: heroFadeUp 0.6s ease-out 0.32s forwards;
}
.hero-stat-overlay-sub {
  color: rgba(255,255,255,0.92); font-size: 1.05rem; max-width: 540px; margin-top: 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.7);
  opacity: 0; animation: heroFadeUp 0.6s ease-out 0.44s forwards;
}
.hero-stat-overlay-cta {
  margin-top: 24px; opacity: 0; animation: heroFadeUp 0.6s ease-out 0.56s forwards;
}
.hero-stat-overlay-cards { display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; }
.hero-glass-card {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.24); border-radius: 14px; padding: 18px 24px; min-width: 130px;
  opacity: 0; transform: translateY(16px); animation: heroFadeUp 0.6s ease-out forwards;
}
.hero-glass-card:nth-child(1) { animation-delay: 0.68s; }
.hero-glass-card:nth-child(2) { animation-delay: 0.8s; }
.hero-glass-card:nth-child(3) { animation-delay: 0.92s; }
.hero-glass-card-value { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 600; color: #fff; line-height: 1; }
.hero-glass-card-label { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 6px; }
@media (max-width: 768px) {
  .hero-stat-overlay { min-height: 560px; }
  .hero-stat-overlay-content { padding: 110px 24px 40px; }
  .hero-stat-overlay-cards { gap: 10px; }
  .hero-glass-card { min-width: 100px; padding: 14px 16px; }
}

/* ── Hero: Photographic fold (About) ── */
.hero-photo-fold { position: relative; min-height: clamp(580px, 46vw, 760px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-photo-fold-bg { position: absolute; inset: 0; z-index: 0; }
.hero-photo-fold-bg img { width: 130%; max-width: none; height: 130%; object-fit: cover; position: absolute; top: -15%; left: -15%; }
.hero-photo-fold::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(18,16,14,0.85) 0%, rgba(18,16,14,0.3) 48%, transparent 78%);
}
.hero-photo-fold-content { position: relative; z-index: 2; max-width: 620px; padding: 64px 56px; }
.hero-photo-fold-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28);
  color: #fff; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border-radius: 99px;
}
.hero-photo-fold-badge svg { width: 12px; height: 12px; }
.hero-photo-fold h1 {
  color: #fff; font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1.04; margin-top: 18px;
}
.hero-photo-fold-sub { color: rgba(255,255,255,0.85); margin-top: 14px; max-width: 460px; }
.hero-photo-fold-cta { margin-top: 26px; }
.hero-photo-fold-corner {
  position: absolute; z-index: 2; top: 28px; right: 28px;
  font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.35); border-radius: 99px; padding: 6px 14px;
}
@media (max-width: 768px) {
  .hero-photo-fold { min-height: 520px; }
  .hero-photo-fold-content { padding: 40px 24px; }
  .hero-photo-fold-bg img { position: static; width: 100%; height: 100%; }
}

/* ── Hero: Marquee (Areas) ── */
.hero-marquee-ticker {
  position: relative; margin-top: 36px; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0;
}
.hero-marquee-track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: marqueeScroll 26s linear infinite; }
.hero-marquee-track span {
  color: var(--text2); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  padding: 0 20px; position: relative;
}
.hero-marquee-track span::after { content: '•'; position: absolute; right: -2px; color: var(--blue); }

/* ── Hero: Editorial (Corporate Travel) ── */
.hero-editorial { position: relative; background: var(--off-white, #faf9f7); overflow: hidden; }
.hero-editorial-inner {
  max-width: 1360px; margin: 0 auto; padding: 100px 40px 70px;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 56px; align-items: center;
}
.hero-editorial-badge {
  display: inline-flex; align-items: center; gap: 6px; background: var(--blue-light); color: var(--blue);
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 99px; margin-bottom: 22px;
}
.hero-editorial-badge svg { width: 12px; height: 12px; }
.hero-editorial h1 {
  font-family: 'Playfair Display', serif; font-weight: 500; color: var(--text);
  font-size: clamp(2.8rem, 5.2vw, 4.6rem); line-height: 1.04; letter-spacing: -0.02em;
}
.hero-editorial-sub { margin-top: 22px; max-width: 480px; font-size: 1.05rem; color: var(--text2); line-height: 1.7; }
.hero-editorial-cta { margin-top: 30px; }
.hero-editorial-checks { list-style: none; margin: 32px 0 0; padding: 24px 0 0; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.hero-editorial-checks li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text2); }
.hero-editorial-checks svg { flex-shrink: 0; color: var(--blue); }
.hero-editorial-card {
  position: relative; width: 100%; height: clamp(360px, 34vw, 520px); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-editorial-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .hero-editorial-inner { grid-template-columns: minmax(0, 1fr); padding: 56px 24px 48px; gap: 32px; }
  .hero-editorial-card { height: 300px; order: -1; }
}

/* ── Hero: Romantic photographic fold, centered (Weddings & Events) ── */
.hero-romantic { position: relative; min-height: clamp(600px, 48vw, 780px); display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-romantic-bg { position: absolute; inset: 0; z-index: 0; }
.hero-romantic-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-romantic::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,15,15,0.4) 0%, rgba(20,15,15,0.62) 100%);
}
.hero-romantic-content { position: relative; z-index: 2; max-width: 640px; padding: 40px; }
.hero-romantic-rule { width: 1px; height: 42px; background: rgba(255,255,255,0.55); margin: 0 auto 22px; }
.hero-romantic-eyebrow { font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 18px; }
.hero-romantic-badge {
  display: inline-flex; align-items: center; gap: 6px; background: var(--blue-light); color: var(--blue);
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 99px; margin-bottom: 18px;
}
.hero-romantic-badge svg { width: 12px; height: 12px; }
.hero-romantic h1 { color: #fff; font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(2.8rem, 6vw, 4.6rem); letter-spacing: 0.01em; }
.hero-romantic-sub { color: rgba(255,255,255,0.85); margin-top: 20px; font-size: 1.05rem; }
.hero-romantic-cta { margin-top: 32px; }
@media (max-width: 768px) {
  .hero-romantic { min-height: 540px; }
}

/* ── Hero: Calm minimal centered (Medical Transportation) ── */
.hero-calm { background: var(--off-white, #faf9f7); }
.hero-calm-inner {
  max-width: 1280px; margin: 0 auto; padding: 100px 40px 70px;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center;
}
.hero-calm-badge {
  display: inline-flex; align-items: center; gap: 6px; background: var(--blue-light); color: var(--blue);
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 99px;
}
.hero-calm-badge svg { width: 12px; height: 12px; }
.hero-calm h1 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(2.4rem, 4.4vw, 3.6rem); margin: 18px 0 0; color: var(--text); line-height: 1.08; }
.hero-calm-sub { max-width: 460px; margin-top: 14px; color: var(--text2); font-size: 1.02rem; line-height: 1.7; }
.hero-calm-cta { margin-top: 26px; }
.hero-calm-checks { list-style: none; margin: 32px 0 0; padding: 22px 0 0; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.hero-calm-checks li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text2); }
.hero-calm-checks svg { flex-shrink: 0; color: var(--blue); }
.hero-calm-img-wrap {
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); height: clamp(360px, 30vw, 480px);
}
.hero-calm-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .hero-calm-inner { grid-template-columns: minmax(0, 1fr); padding: 56px 24px 48px; gap: 32px; text-align: center; }
  .hero-calm-badge { margin: 0 auto; }
  .hero-calm-checks { text-align: left; }
  .hero-calm-img-wrap { height: 260px; order: -1; }
}


/* ── Split-hero destination ticker (Intercity Rides) ── */
.split-hero-ticker { margin-top: 32px; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; }
.split-hero-ticker-track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: marqueeScroll 22s linear infinite; }
.split-hero-ticker-track span { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; color: var(--text2); padding: 0 16px; position: relative; }
.split-hero-ticker-track span::after { content: '→'; position: absolute; right: -4px; color: var(--blue); }
@media (max-width: 768px) {
  .split-hero-ticker { margin-top: 20px; }
}

/* ── Flight status glass card (Airport Transfers) ── */
.flight-status-card {
  position: absolute; bottom: 28px; left: 28px; z-index: 2;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 14px; padding: 14px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: heroFadeUp 0.6s ease-out 1.1s forwards;
}
.flight-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; animation: statusPulse 1.8s ease-in-out infinite; }
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.flight-status-text strong { display: block; font-size: 14px; color: var(--text); }
.flight-status-text span { color: var(--text3); font-size: 12px; }
@media (max-width: 768px) {
  .flight-status-card { left: 16px; bottom: 16px; padding: 10px 14px; }
}

/* ══════════════════════════════════════
   HERO CARD — bordered rounded container system
   (By the Hour · Service Areas · Contact)
   ══════════════════════════════════════ */
.hero-card { padding: 40px 24px; }
.hero-card-inner {
  max-width: 1320px; margin: 0 auto;
  border: 1px solid var(--border); border-radius: 32px;
  background: linear-gradient(155deg, var(--white) 0%, var(--off-white, #faf9f7) 55%, var(--blue-light) 130%);
  overflow: hidden; position: relative;
}
.hero-card-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--border); color: var(--text2);
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  padding: 6px 14px 6px 10px; border-radius: 99px;
  opacity: 0; animation: heroFadeUp 0.6s ease-out 0.15s forwards;
}
.hero-card-badge svg { width: 13px; height: 13px; color: var(--blue); }
.hero-card-eyebrow-icon {
  width: 22px; height: 22px; border-radius: 50%; background: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0;
}
.hero-card-eyebrow-icon svg { width: 12px; height: 12px; }
.hero-card h1 {
  font-family: 'Playfair Display', serif; font-weight: 500; color: var(--text);
  line-height: 1.04; letter-spacing: -0.02em; margin-top: 20px;
  opacity: 0; animation: heroFadeUp 0.6s ease-out 0.28s forwards;
}
.hero-card-sub {
  color: var(--text2); font-size: 1.05rem; line-height: 1.7; margin-top: 16px;
  opacity: 0; animation: heroFadeUp 0.6s ease-out 0.4s forwards;
}
.hero-card-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px;
  opacity: 0; animation: heroFadeUp 0.6s ease-out 0.52s forwards;
}
.hero-card-cta-row .btn { border-radius: 99px; padding: 15px 30px; }
.hero-card-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; opacity: 0; animation: heroFadeUp 0.6s ease-out 0.64s forwards; }
.hero-card-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: 1px solid var(--border); border-radius: 99px;
  padding: 8px 14px; font-size: 13px; font-weight: 500; color: var(--text2);
}
.hero-card-chip svg { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }

/* Split layout — text + image side by side */
.hero-card-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; }
.hero-card-split-text { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.hero-card-split-text h1 { font-size: clamp(2.4rem, 3.6vw, 3.4rem); }
.hero-card-split-media { position: relative; min-height: 420px; overflow: hidden; }
.hero-card-split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-card-split-media img.img-bias-bottom { object-position: center 85%; }
.hero-card-split.reverse .hero-card-split-media { order: -1; }
@media (max-width: 900px) {
  .hero-card { padding: 24px 16px; }
  .hero-card-inner { border-radius: 24px; }
  .hero-card-split { grid-template-columns: minmax(0, 1fr); }
  .hero-card-split-text { padding: 40px 28px; text-align: center; min-width: 0; }
  .hero-card-split-text .hero-card-cta-row,
  .hero-card-split-text .hero-card-chips { justify-content: center; }
  .hero-card-split-media { min-height: 260px; order: -1; }
  .hero-card-split.reverse .hero-card-split-media { order: -1; }
}

/* Stacked layout — centered text, wide banner image below */
.hero-card-stacked-text { padding: 64px 56px 8px; text-align: center; }
.hero-card-stacked-text h1 { font-size: clamp(2.6rem, 4.4vw, 4rem); }
.hero-card-stacked-text .hero-card-sub { max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-card-stacked-text .hero-card-cta-row { justify-content: center; }
.hero-card-banner { position: relative; height: clamp(220px, 28vw, 380px); margin: 40px 0 0; overflow: hidden; }
.hero-card-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .hero-card-stacked-text { padding: 40px 24px 0; }
  .hero-card-banner { height: 220px; margin-top: 28px; }
}

/* ── Feature Cards (3-col icons) ── */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}
.feature-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.feature-card p { font-size: 14px; }

/* ── Section Title ── */
.section-title { margin-bottom: 48px; }
.section-title h2 { margin-bottom: 16px; }
.section-title p { font-size: 1.05rem; max-width: 560px; }
.section-title.center { text-align: center; }
.section-title.center p { margin: 16px auto 0; }

/* ── Blue underline accent ── */
.blue-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--blue);
  margin: 16px 0;
}
.blue-line.center { margin: 16px auto; }

/* ── Service Cards (horizontal with image) ── */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row-img {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-row-text h2 { margin-bottom: 8px; }
.service-row-text p { margin-top: 16px; font-size: 1rem; }
.service-features { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text2);
}
.service-feature::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-row-text .btn { margin-top: 28px; }

/* ── Vehicle Cards (fleet grid) ── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.fleet-grid-2 { grid-template-columns: repeat(2, 1fr); }
.fleet-category-header {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.vehicle-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover { box-shadow: var(--shadow-md, var(--shadow)); transform: translateY(-3px); }
.vehicle-card-img {
  aspect-ratio: 3 / 2;
  background: var(--white);
  overflow: hidden;
  flex-shrink: 0;
}
.vehicle-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vehicle-card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.vehicle-card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.vehicle-capacity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.07);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.vehicle-card-body p { font-size: 14px; line-height: 1.7; color: var(--text2); }
.vehicle-card-cta {
  margin-top: auto;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vehicle-features { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.vehicle-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
}
.vehicle-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Service page feature checklist ── */
.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
  max-width: 780px;
  margin: 36px auto 44px;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text2);
  line-height: 1.5;
}
.service-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 1px;
}
@media (max-width: 640px) {
  .service-features { grid-template-columns: 1fr; }
}

/* ── Stats Strip ── */
.stats-strip {
  background: var(--text);
  color: #fff;
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 8px; }

/* ── Areas Grid ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.area-card {
  position: relative;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.area-card:hover img { transform: scale(1.05); }
.area-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.area-card-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

/* ── Location chips ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.location-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  transition: transform 0.24s cubic-bezier(0.4,0,0.2,1), box-shadow 0.24s ease, border-color 0.24s ease;
}
.location-chip svg { flex-shrink: 0; color: var(--blue); }
.location-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
  border-color: transparent;
}
.location-chip.location-chip-all {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  font-weight: 600;
}
.location-chip.location-chip-all svg { color: #fff; }
.location-chip.location-chip-all:hover { box-shadow: 0 12px 28px rgba(26,86,219,0.35); }
@media (max-width: 768px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-stars { color: #f59e0b; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--text2); line-height: 1.7; font-style: italic; }
.testimonial-author { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-role { font-size: 13px; color: var(--text3); }

/* ── FAQ Accordion ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  gap: 16px;
}
.faq-q svg { flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--text);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 520px; margin: 0 auto 32px; }
.cta-banner .btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.75); }

/* ── Trust strip ── */
.trust-strip {
  background: var(--off-white);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
}
.trust-item svg { color: var(--blue); }

/* ── Contact Card ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-methods { display: flex; flex-direction: column; gap: 24px; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--gray-50);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  transition: transform 0.24s cubic-bezier(0.4,0,0.2,1), box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}
.contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  border-color: var(--border);
  background: var(--white);
}
.contact-method-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-method h4 { margin-bottom: 4px; }
.contact-method p { font-size: 14px; margin: 0; }
.contact-method a { color: var(--blue); font-weight: 500; }

/* ── Form ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: 0.03em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text3); line-height: 1.65; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text3);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--text3); }
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a { font-size: 13px; color: var(--text3); }
.footer-bottom-links a:hover { color: var(--text); }
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  font-size: 14px;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--text); color: var(--text); }

/* ── Scroll reveal ── */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ── Spinner ── */
@keyframes spin { to { transform: rotate(360deg); } }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hbar-field-sm { flex: 0 0 130px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none !important; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 0 16px; }
  .nav-logo { font-size: 17px; white-space: nowrap; }

  .hero { min-height: 100svh; }
  .hero-inner { padding: 100px 24px 48px; }
  .hero-eyebrow { font-size: 10.5px; letter-spacing: 0.1em; padding: 7px 14px; white-space: nowrap; }
  .hero-headline { font-size: clamp(2.5rem, 11vw, 3rem); }
  .hero-sub { font-size: 1rem; }
  .hero-sub br { display: none; }
  .hero-trust-divider { display: none; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-trust { gap: 14px; }

  /* Stack the booking bar vertically on mobile */
  .hero-bar {
    flex-direction: column;
    min-height: auto;
    border-radius: 12px;
    max-width: 100%;
  }
  .hbar-field {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 14px 16px;
  }
  .hbar-field-sm { flex: none; }
  .hbar-btn { padding: 16px; border-radius: 0 0 12px 12px; min-height: 52px; }
  .hero-tab { padding: 10px 20px; font-size: 14px; }

  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .feature-cards { grid-template-columns: 1fr; gap: 16px; }
  .fleet-grid, .fleet-grid-2 { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .service-row { grid-template-columns: 1fr; gap: 32px; }
  .service-row.reverse { direction: ltr; }
  .service-row-img { height: 260px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 16px; }

  h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
}

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

/* ═══════════════════════════════════════════════
   PREMIUM SCROLL ANIMATIONS
   ═══════════════════════════════════════════════ */

/* 1 · Fade + rise (extends existing data-reveal) */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* 2 · Slide in from left / right */
[data-reveal-left] {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal-left].revealed { opacity: 1; transform: translateX(0); }

[data-reveal-right] {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal-right].revealed { opacity: 1; transform: translateX(0); }

/* 3 · Zoom-in reveal for images */
[data-reveal-zoom] {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal-zoom].revealed { opacity: 1; transform: scale(1); }

/* 4 · Curtain reveal (image uncovered left→right) */
.curtain-wrap {
  position: relative;
  overflow: hidden;
}
.curtain-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--off-white);
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.77,0,0.18,1);
}
.curtain-wrap.revealed::after {
  transform: scaleX(0);
  transform-origin: right center;
}

/* 5 · Divider line that draws itself */
.draw-line {
  width: 0;
  height: 2px;
  background: var(--border);
  transition: width 1s cubic-bezier(0.16,1,0.3,1);
}
.draw-line.revealed { width: 100%; }

.blue-line {
  transition: width 0.9s cubic-bezier(0.16,1,0.3,1);
  width: 0 !important;
}
.blue-line.revealed { width: 48px !important; }

/* 6 · Stagger children delay */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0s; }
[data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: 0.08s; }
[data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: 0.16s; }
[data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: 0.24s; }
[data-reveal-stagger].revealed > *:nth-child(5) { transition-delay: 0.32s; }
[data-reveal-stagger].revealed > *:nth-child(6) { transition-delay: 0.40s; }
[data-reveal-stagger].revealed > *:nth-child(7) { transition-delay: 0.48s; }
[data-reveal-stagger].revealed > *:nth-child(8) { transition-delay: 0.56s; }
[data-reveal-stagger].revealed > *:nth-child(n+9) { transition-delay: 0.60s; }
[data-reveal-stagger].revealed > * { opacity: 1; transform: translateY(0); }

/* 6b · Area card stagger — zoom + rise */
.areas-grid[data-reveal-stagger] > * {
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.areas-grid[data-reveal-stagger].revealed > * { opacity: 1; transform: scale(1) translateY(0); }

/* 7 · Parallax wrapper — JS controls --py-offset custom property */
.parallax-bg {
  will-change: transform;
  transition: none;
}

/* 8 · Section fade between (subtle overlay on entry) */
.section-fade {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.section-fade.revealed { opacity: 1; }

/* Quote page — trip summary */
.trip-summary {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.ts-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}
.ts-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ts-dot-blue { background: var(--blue); }
.ts-dot-dark { background: var(--text); }
.ts-dot-stop { background: var(--gray-300); border: 2px solid var(--text3); width: 8px; height: 8px; }
.ts-connector {
  width: 1.5px;
  height: 14px;
  background: var(--border);
  margin-left: 4px;
}
.ts-label {
  font-size: 13px;
  color: var(--text2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
.ts-meta {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text3);
  flex-wrap: wrap;
}
.ts-meta span { display: flex; align-items: center; gap: 4px; }
.ts-edit-link {
  font-size: 12px;
  color: var(--blue);
  font-weight: 500;
  cursor: pointer;
  margin-top: 8px;
  display: inline-block;
}
.ts-edit-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   BLACKLANE MICRO-ANIMATIONS
   ══════════════════════════════════════════ */

/* Hero centered entrance */
.hero-centered {
  animation: heroTextRise 0.9s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
@keyframes heroTextRise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Trust strip stagger entrance */
.trust-item {
  animation: trustIn 0.5s cubic-bezier(0.16,1,0.3,1) both;
}
.trust-item:nth-child(1) { animation-delay: 0.05s; }
.trust-item:nth-child(2) { animation-delay: 0.12s; }
.trust-item:nth-child(3) { animation-delay: 0.19s; }
.trust-item:nth-child(4) { animation-delay: 0.26s; }
.trust-item:nth-child(5) { animation-delay: 0.33s; }
@keyframes trustIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.trust-item { transition: transform 0.22s ease; }
.trust-item:hover { transform: translateY(-2px); }
.trust-item svg { transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1); }
.trust-item:hover svg { transform: scale(1.18); }

/* Book tab — background fade on hover */
.book-tab { transition: color 0.18s ease, background-color 0.18s ease; }
.book-tab:not(.active):hover { background-color: var(--gray-50); color: var(--text2); }

/* Book field focus glow + label color shift */
.book-field { transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease; }
.book-field:focus-within { box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.book-label { transition: color 0.18s ease; }
.book-field:focus-within .book-label { color: var(--blue); }

/* Select custom chevron */
.book-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 18px;
  cursor: pointer;
}

/* Widget body height transition */
.book-widget-body { overflow: hidden; transition: height 0.32s cubic-bezier(0.4,0,0.2,1); }

/* Feature card icon springy hover */
.feature-card-icon {
  border-radius: 12px;
  transition: background 0.22s ease, transform 0.32s cubic-bezier(0.34,1.56,0.64,1);
}
.feature-card:hover .feature-card-icon { background: var(--blue); transform: translateY(-3px) scale(1.1); }
.feature-card-icon svg { transition: color 0.22s ease; }
.feature-card:hover .feature-card-icon svg { color: #fff; }

/* Feature card "learn more" link */
.feature-card a[href] { transition: color 0.18s ease, gap 0.18s ease; }


/* Area card hover lift */
.area-card { transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), box-shadow 0.28s ease; overflow: hidden; }
.area-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
.area-card img { transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }
.area-card:hover img { transform: scale(1.05); }

/* CTA banner buttons */
.cta-banner .btn { transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.15s ease; }

/* Inline link transitions site-wide */
a { transition: color 0.18s ease, opacity 0.18s ease; }

/* ── Shuffle Gallery ── */
.shuffle-section { background: var(--gray-50); border-top: 1px solid var(--border); }
.shuffle-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.shuffle-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(4, 1fr); gap: 4px; height: 440px; border-radius: 16px; overflow: hidden; }
.shuffle-cell { background-size: cover; background-position: center; transition: opacity 0.5s ease; border-radius: 2px; }
@media (max-width: 768px) {
  .shuffle-wrap { grid-template-columns: 1fr; gap: 40px; }
  .shuffle-grid { height: 320px; }
}

/* ── Cursor spotlight on feature cards ── */
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(500px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(37,99,235,0.07), transparent 40%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s;
}
.feature-card > * { position: relative; z-index: 1; }

/* ── Photo Collage: dominant + accent ── */
.collage-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
}
.collage-photo {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.collage-photo.revealed { opacity: 1; transform: translateY(0); }
.collage-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collage-photo-main { top: 0; left: 0; width: 78%; height: 82%; z-index: 1; }
.collage-photo-accent {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 46%;
  z-index: 2;
  border: 6px solid var(--gray-50);
  transition-delay: 0.15s;
}
@media (max-width: 768px) {
  .collage-wrap { max-width: 340px; }
}

/* ── Collage trust list ── */
.collage-trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.collage-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
  font-weight: 500;
}
.collage-trust-item svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* ── Collage social proof badge: pinned to the accent photo's corner ── */
.collage-social-badge {
  position: absolute;
  right: 8%;
  bottom: -16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.6s, transform 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.6s;
  z-index: 3;
}
.collage-social-badge svg { color: var(--blue); }
.collage-wrap:has(.collage-photo.revealed) .collage-social-badge {
  opacity: 1;
  transform: translateY(0);
}

.collage-photo:hover {
  z-index: 4;
  box-shadow: 0 32px 70px rgba(0,0,0,0.2);
}
.collage-photo img {
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.collage-photo:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
  .collage-trust-list { gap: 8px; }
  .collage-trust-item { font-size: 13px; }
  .collage-social-badge { font-size: 11px; padding: 6px 12px; right: 6%; bottom: -14px; }
}

/* ── TextParallaxContent (Services page) ── */
.tpc-section { position: relative; min-height: 150vh; isolation: isolate; }
.tpc-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
.tpc-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform-origin: center center;
  transition: none;
}
.tpc-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.62) 40%, rgba(0,0,0,0.72) 60%, rgba(0,0,0,0.45) 100%);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  pointer-events: none;
}
.tpc-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.tpc-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
}
.tpc-desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.95);
  max-width: 520px;
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0,0,0,0.8), 0 2px 6px rgba(0,0,0,0.6);
}
.tpc-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  color: #fff;
}
.tpc-scroll-hint span {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  animation: tpcPulse 1.8s ease-in-out infinite;
}
@keyframes tpcPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}
.tpc-detail {
  background: var(--white);
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.tpc-detail-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}
.tpc-detail-inner h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  margin-bottom: 16px;
}
.tpc-detail-inner p {
  color: var(--text2);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.tpc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.tpc-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.5;
}
.tpc-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 6px;
}
@media (max-width: 640px) {
  .tpc-features { grid-template-columns: 1fr; }
  .tpc-detail-inner { padding: 0 20px; }
  .tpc-section { min-height: 130vh; }
}

/* ════════════════════════════════════════
   MOBILE OPTIMIZATION — comprehensive
   ════════════════════════════════════════ */

/* Page hero: smaller on mobile */
@media (max-width: 768px) {
  .hero-bg { background-position: center 50%; background-size: cover; }
  .page-hero-bg { background-position: center center; }
  .page-hero { height: 360px; }
  .page-hero p { font-size: 0.95rem; }
  .page-hero-inner { padding: 28px 20px; }
  .section-title { margin-bottom: 32px; }

  /* About story grid: stack vertically */
  .story-grid { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Services FAQ grid: stack vertically */
  .faq-grid { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Trust strip: wrap on smaller screens */
  .trust-items { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .trust-item { min-width: 130px; }

  /* CTA banner tighter */
  .cta-banner { text-align: center; }
  .cta-banner p { font-size: 0.95rem; }

  /* Footer brand */
  .footer-brand p { font-size: 13px; }

  /* Booking bar fields tighter */
  .book-field-row { grid-template-columns: 1fr; }
}

/* Airport icon */
.airport-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Mobile sticky Book Now bar */
.mobile-book-bar {
  display: none;
}

@media (max-width: 768px) {
  /* Grids with inline 4-col override */
  .areas-grid-4col { grid-template-columns: repeat(2, 1fr) !important; }
  .areas-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .locations-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .airport-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .airport-grid img { height: 260px !important; }

  /* Sticky Book Now bar */
  .mobile-book-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    gap: 10px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
  }
  .mobile-book-bar.visible { transform: translateY(0); }
  .mobile-book-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 14px;
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    text-align: center;
  }
  .mobile-book-btn:hover { background: var(--blue-dark); }
  .mobile-book-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--gray-50);
    border: 1.5px solid var(--border);
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
  }
  /* Add padding so page content doesn't hide under the bar */
  body.has-mobile-bar { padding-bottom: 76px; }
}

/* Small phones */
@media (max-width: 480px) {
  .areas-grid-4col { grid-template-columns: repeat(2, 1fr) !important; }
  .locations-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Small phones (main block continues) */
@media (max-width: 480px) {
  .page-hero { height: 300px; }
  .section { padding: 48px 0; }
  .section-sm { padding: 40px 0; }
  .container { padding: 0 16px; }

  /* Shuffle grid shorter */
  .shuffle-grid { height: 260px; }

  /* Buttons full-width on tiny screens */
  .cta-banner .btn { width: 100%; max-width: 280px; }

  /* Stats numbers smaller */
  .stat-number { font-size: clamp(2rem, 10vw, 3rem); }

  /* Trust strip: single-column checklist cards. A 2-column grid stranded
     the 5th (odd) item alone as a lopsided full-width card — one column
     avoids that regardless of item count. */
  .trust-items { display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
  .trust-item {
    flex-direction: row; align-items: flex-start; text-align: left;
    gap: 10px; min-width: 0;
    background: #fff; border: 1px solid var(--border); border-radius: 12px;
    padding: 12px 14px; font-size: 13px; line-height: 1.4;
  }
  .trust-item svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; }

  /* Page hero text */
  .page-hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .page-hero p { font-size: 0.9rem; }

  /* FAQ question button text size */
  .faq-q { font-size: 0.9rem; }

  /* Service row image shorter */
  .service-row-img { height: 200px; }

  /* Testimonial card padding */
  .testimonial-card { padding: 24px 20px; }

  /* Vehicle card */
  .vehicle-card-body { padding: 20px 16px; }

  /* Area card title */
  .area-card-inner h3 { font-size: 1.1rem; }
}
