/* ===========================================================================
   JAIPUR YATRI — Unified Stylesheet
   Merged in cascade order: base tokens/layout + animations + premium overrides
   =========================================================================== */

/* ===========================================
   JAIPUR YATRI — MASTERPIECE
   High-End Luxury Travel Service (Obsidian & Gold)
   =========================================== */

/* ---------- Google Fonts ---------- */
/* Note: Fonts are loaded via <link> in index.html for performance */
/* Font-display is handled via query param in the Google Fonts URL */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
  /* Core Palette: Premium Obsidian Night */
  --bg-pure: #09090C;
  --bg-surface: #121216;
  --bg-panel: #181820;
  --bg-elevated: #22222B;
  
  /* The Accent: Satin Champagne Gold */
  --accent: #DFB76C;
  --accent-hover: #C59F54;
  --accent-dim: rgba(223, 183, 108, 0.08);
  --accent-light: #F3E2C3;

  /* Typography Colors */
  --text-primary: #F4F4F6;
  --text-secondary: #A1A1AA; /* Zinc 400 */
  --text-tertiary: #71717A; /* Zinc 500 — decorative text only (fails AA for normal text) */
  --text-placeholder: #8A8A93; /* V1 fix — for form placeholders, input icons, hints. 4.6:1 on bg-pure, passes AA */
  --text-inverse: #09090C;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.04);
  --border-strong: rgba(223, 183, 108, 0.15);
  --border-glow: rgba(223, 183, 108, 0.3);

  /* Spacing System (8pt Grid) */
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;
  --space-32: 128px;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Radii for that 'App' feel */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Transitions */
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-premium: cubic-bezier(0.32, 0.72, 0, 1);
  /* Custom easings used by animations + premium sections */
  --spring: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  --smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.15s var(--ease-out);
  --t-base: 0.3s var(--ease-out);
  --t-premium: 0.5s var(--ease-premium);
  --t-slow: 0.8s var(--ease-premium);

  /* Double-Bezel Tokens */
  --shell-padding: 2px;
  --shell-radius: calc(var(--radius-lg) + 4px);
  --inner-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --inner-highlight-strong: inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-pure);
  -webkit-text-size-adjust: 100%;
  /* Do NOT put overflow-x on html — iOS Safari bug 153852: overflow:hidden on
     html/body doesn't work because the root scroller is the UIWebView, not the
     html/body box. Use the .site wrapper instead. */
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-pure);
  color: var(--text-secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  width: 100%;
  max-width: 100%; /* NOT 100vw — 100vw includes scrollbar on some browsers */
  position: relative;
  overscroll-behavior-x: none; /* Kill iOS rubber-band horizontal bounce */
}

/* iOS Safari overflow fix (WebKit bug 153852): The .site wrapper is the
   proven solution. overflow-x: clip on html/body does NOT work on iOS Safari
   because the root scroller is the UIWebView scroll view, not the html/body
   box. Wrapping all page content in .site with overflow-x: clip creates a
   proper clip context that iOS Safari respects. */
.site {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden; /* Both axes — nuclear containment */
  overflow-x: clip;
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-pure);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-elevated);
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}

::selection {
  background: var(--accent);
  color: var(--bg-pure);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--t-fast);
}

img {
  max-width: 100%;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

button {
  cursor: pointer;
}

/* Focus-visible for keyboard accessibility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ─── Mobile horizontal-overflow prevention (comprehensive) ─────────── */
/* Ensure no element can force the page wider than the viewport on mobile. */
/* These rules target the root causes of Safari iOS horizontal overflow. */
img, video, canvas, svg, iframe, embed, object {
  max-width: 100%;
  height: auto;
}
/* All grid and flex children must be allowed to shrink below their content's
   minimum width. Without this, flex/grid items with intrinsic minimum widths
   (like iOS date inputs, long words, etc.) force their parent wider than 100%. */
.grid > *, .flex > *, [class*="grid"] > *, [class*="flex"] > * {
  min-width: 0;
  min-height: 0;
}
/* Prevent long words/URLs from forcing layout wider on mobile */
body, p, h1, h2, h3, h4, h5, h6, li, span, a, td, th, blockquote {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Remove focus outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* ---------- Typography Utility ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

/* ---------- Skip Link (Keyboard Accessibility) ---------- */
.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--text-inverse);
  font-weight: 700;
  border-radius: var(--radius-pill);
  transform: translateY(-150px);
  transition: transform 0.2s ease;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ---------- Structural Utilities ---------- */
/* NUCLEAR overflow containment: overflow:hidden on .container is the one
   thing that was missing. Every section contains a .container, and every
   .container contains the actual content. If ANYTHING inside the container
   overflows (form inputs, map iframe, decorative elements), it gets clipped
   HERE — before it can propagate to the section, hero, site, or body. */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  box-sizing: border-box;
  overflow-x: clip; /* Clips horizontal overflow only — vertical is visible for dropdowns */
}

.section {
  padding: clamp(48px, 8vw, 128px) 0;
  position: relative;
  overflow: hidden;
  overflow-x: clip; /* iOS Safari belt-and-suspenders — clip is more robust */
  max-width: 100%; /* Hard cap — section can never be wider than viewport */
  box-sizing: border-box;
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  max-width: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(223, 183, 108, 0.03) 0%, rgba(0, 0, 0, 0) 40%);
  pointer-events: none;
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: var(--space-12);
  max-width: 700px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(223, 183, 108, 0.15);
  border-radius: var(--radius-pill);
}

.section-title {
  font-size: clamp(1.8rem, 5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.section-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.125rem);
  color: var(--text-secondary);
}

/* ---------- Buttons (The App Feel) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: background var(--t-fast), box-shadow var(--t-fast), color var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--text-inverse);
  box-shadow: 0 4px 15px rgba(223, 183, 108, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(223, 183, 108, 0.35);
  transform: translateY(-1px);
}

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

.btn-primary .btn-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  margin-left: 8px;
  transition: transform var(--t-premium), background var(--t-base);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.btn-primary:hover .btn-icon-wrap {
  transform: translateX(4px) translateY(-1px) scale(1.08);
  background: rgba(0, 0, 0, 0.35);
}

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

/* Compact nav button */
.btn-nav {
  padding: 8px 16px 8px 20px;
  font-size: 0.85rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
}

.btn-outline:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

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

/* btn-outline state machine for loading/success */
.btn-outline {
  position: relative;
}

.btn-outline .btn-label-loading,
.btn-outline .btn-label-success {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

.btn-outline.is-loading .btn-label-default,
.btn-outline.is-success .btn-label-default {
  opacity: 0;
  pointer-events: none;
}

.btn-outline.is-loading .btn-label-loading {
  opacity: 1;
  pointer-events: auto;
}

.btn-outline.is-success .btn-label-success {
  opacity: 1;
  pointer-events: auto;
}

.btn-outline.is-loading {
  pointer-events: none;
  opacity: 0.85;
}


/* ---------- Navigation (Fluid Island) ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 16px 0;
  pointer-events: none;
  transition: padding var(--t-base);
}

.navbar.scrolled {
  padding: 8px 16px 0;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 12px 10px 20px;
  background: rgba(9, 9, 12, 0.7);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(223, 183, 108, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  pointer-events: auto;
  transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.navbar.scrolled .navbar-inner {
  background: rgba(9, 9, 12, 0.85);
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(223, 183, 108, 0.06);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.nav-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
}

.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: var(--space-8);
  background: rgba(18, 18, 22, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 32px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--t-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius-pill);
  transition: width var(--t-base), opacity var(--t-base);
  transform: translateX(-50%);
  opacity: 0;
}

.nav-links a:hover::after {
  width: 50%;
  opacity: 1;
}

.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  width: 70%;
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity var(--t-fast);
}

.nav-phone:hover {
  opacity: 0.8;
}

.nav-phone svg {
  flex-shrink: 0;
}

/* ---------- Hero Section (The Executive Suite) ---------- */
/* REWRITTEN from scratch for mobile overflow safety.
   Previous version had 3 overflow causes:
   1. .hero-glow was 800px wide at right:-5% — overflowed every mobile viewport
   2. .hero-bg used width:100% but absolute positioning + transform caused Safari clipping issues
   3. overflow:hidden on .hero didn't reliably clip absolutely-positioned children on iOS Safari
   Fix: use max-width:100% on all decorative elements, contain them with inset:0, and
   add overflow-x:clip as a belt-and-suspenders safety net. */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: clamp(80px, 8vh, 100px) 0 clamp(40px, 5vh, 60px);
  position: relative;
  overflow: hidden;
  overflow-x: clip; /* iOS Safari: clip is more robust than hidden for absolutely-positioned children */
  contain: layout; /* New: prevents descendant boxes from affecting the parent's overflow */
  max-width: 100%; /* Hard cap — hero can never be wider than viewport */
  box-sizing: border-box;
}

@media (min-width: 1025px) {
  .hero {
    min-height: 0;
    padding: clamp(100px, 12vh, 140px) 0 clamp(60px, 8vh, 100px);
  }
}

/* Jaipur Cityscape moody texture background — REWRITTEN for mobile safety.
   Was: top:-10%; left:0; width:100%; height:120%; — the negative top + 120% height
   created overflow on iOS Safari. Fix: inset:0 fills the hero exactly. */
.hero-bg {
  position: absolute;
  inset: 0;
  max-width: 100%;
  z-index: 0;
  pointer-events: none;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%) contrast(110%);
  will-change: transform;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* Background Luminous Glow — REWRITTEN for mobile safety.
   Was: width:800px; right:-5%; — on a 375px viewport this extended 800px to the
   LEFT of a point 18px past the right edge, causing massive horizontal overflow.
   Fix: use inset:0 to fill the hero, then radial-gradient from a corner. No
   fixed pixel widths, no negative offsets. */
.hero-glow {
  position: absolute;
  inset: 0;
  max-width: 100%;
  background: radial-gradient(circle at 85% 20%, rgba(223, 183, 108, 0.12) 0%, rgba(0, 0, 0, 0) 50%);
  z-index: 1;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 100%; /* Mobile safety — grid can never exceed parent width */
  min-width: 0; /* Allow grid to shrink below content minimum */
}

.hero-grid > * {
  min-width: 0;
  max-width: 100%; /* Mobile safety — children can't overflow */
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 5.25rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  word-break: break-word;
  overflow-wrap: anywhere; /* iOS Safari fix — WebKit font metrics can render long words wider */
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-hindi {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-tertiary);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hindi-content {
  transition: opacity 0.15s ease;
}

/* U6/C2 fix: replaced the language toggle button with a static "Rajasthani
   folk saying" label. The tagline now auto-rotates through Hindi → Romanized →
   English every 4 seconds (see translate.js) as a cultural flourish, not a
   language switcher. */
.hindi-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  margin-left: var(--space-2);
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

/* Objection-preempting trust badges below hero copy */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 480px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(223, 183, 108, 0.08);
  border: 1px solid rgba(223, 183, 108, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.hero-badge svg {
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero-badges {
    gap: 8px;
    margin-bottom: var(--space-3);
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 10px;
  }
}

/* ---------- The Booking App Interface (Double-Bezel) ---------- */
.booking-app {
  position: relative;
  background: rgba(9, 9, 12, 0.5);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(223, 183, 108, 0.08);
  border-radius: var(--shell-radius);
  padding: var(--shell-padding);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(223, 183, 108, 0.03);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  width: 100%;
  max-width: 100%; /* Mobile safety — can't exceed parent */
  min-width: 0; /* Allow shrinking below content minimum */
  box-sizing: border-box;
}

.booking-app::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--shell-radius);
  padding: var(--shell-padding);
  background: linear-gradient(135deg, rgba(223, 183, 108, 0.06), transparent 40%, transparent 60%, rgba(223, 183, 108, 0.03));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.booking-app-inner {
  background: rgba(18, 18, 22, 0.85);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--inner-highlight);
  position: relative;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.booking-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
}

.booking-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.booking-hint {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-placeholder);
  padding: 4px 10px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}


/* WhatsApp popup-blocked fallback banner (U1 fix). Hidden by default; shown
   by JS when window.open() returns null or a closed window. Real <a href>
   inside so the user can tap directly — user-initiated <a> clicks bypass
   popup blockers. */
.whatsapp-fallback {
  margin-top: var(--space-4);
  padding: 16px 18px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: var(--radius-md);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  animation: fadeSlideUp 0.4s var(--ease-out);
}
.whatsapp-fallback[hidden] { display: none; }
.whatsapp-fallback-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-fallback-icon svg { width: 18px; height: 18px; }
.whatsapp-fallback-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.whatsapp-fallback-body strong {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}
.whatsapp-fallback-body span {
  color: var(--text-secondary);
}
.whatsapp-fallback-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 12px 20px;
  background: #25D366;
  color: #fff !important;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  font-family: var(--font-heading);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.whatsapp-fallback-link:hover { background: #1ebe5a; transform: translateY(-1px); }
.whatsapp-fallback-call {
  margin-top: 4px;
  color: var(--accent) !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
}
.whatsapp-fallback-call:hover { text-decoration: underline; }

/* Bento Card Background Slideshows — V4 fix: pause on hover/focus so the
   motion doesn't compete with reading the card text. */
.bento-slideshow { animation-play-state: running; }
.bento-card:hover .bento-slideshow,
.bento-card:focus-within .bento-slideshow {
  animation-play-state: paused;
}
.bento-card:hover .bento-slide,
.bento-card:focus-within .bento-slide {
  animation-play-state: paused !important;
}

/* Secondary conversion CTAs (U3 fix — non-WhatsApp fallbacks) */
.booking-alt-ctas {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}
.booking-alt-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-placeholder);
  margin-bottom: 10px;
  font-weight: 500;
}
.booking-alt-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.booking-alt-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
}
.booking-alt-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-strong);
  color: var(--text-primary);
}
.booking-alt-link svg { color: var(--accent); }

/* Cab drive animation after booking */
.cab-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.cab-track.cab-driving {
  opacity: 1;
}

.cab-road {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--border-strong) 0,
    var(--border-strong) 8px,
    transparent 8px,
    transparent 16px
  );
}

.cab-car {
  position: absolute;
  bottom: 0;
  left: -32px;
  z-index: 1;
  color: var(--accent);
}

.cab-track.cab-driving .cab-car {
  animation: cabDrive 1.8s var(--ease-out) forwards;
}

@keyframes cabDrive {
  0% { left: -32px; }
  100% { left: calc(100% + 10px); }
}

/* Field helper text */
.field-helper {
  display: block;
  font-size: 0.65rem;
  color: var(--text-placeholder);
  padding: 2px 4px 0;
  line-height: 1.3;
}

/* Form social proof near submit button */

/* Inline form error message */
.field-error-msg {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #e74c3c;
  margin-top: 4px;
  padding: 0 4px;
  animation: fadeSlideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Form validation shake */
.form-shake {
  animation: shakeHaptic 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.field-error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
}

@keyframes shakeHaptic {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-6px); }
  30% { transform: translateX(5px); }
  45% { transform: translateX(-4px); }
  60% { transform: translateX(3px); }
  75% { transform: translateX(-2px); }
  90% { transform: translateX(1px); }
}

/* Vehicle recommendation hint */
.vehicle-hint-wrapper {
  display: flex !important;
  align-items: center;
  min-height: 60px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.vehicle-hint {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  padding: 8px 12px;
  background: var(--accent-dim);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  width: 100%;
  text-align: center;
  animation: fadeSlideUp 0.3s var(--ease-out);
}

/* WhatsApp icon in button */
.btn-wa-icon {
  color: #25D366;
  flex-shrink: 0;
}


/* Sightseeing dynamic content helper classes */
.hide-field {
  display: none !important;
}

/* ---------- Utility Classes ---------- */
.flex-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mt-2 {
  margin-top: var(--space-2);
}

.w-full {
  width: 100%;
}

.text-accent {
  color: var(--accent);
}

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

.fw-600 {
  font-weight: 600;
}

.block {
  display: block;
}

.pt-28 {
  padding-top: 28px;
}

.h-100 {
  height: 100px;
}

.resize-none {
  resize: none;
}

.flex-center {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gap-2 {
  gap: var(--space-2);
}

.leading-1-4 {
  line-height: 1.4;
}

.fs-0-85 {
  font-size: 0.85rem;
}

.fs-0-8 {
  font-size: 0.8rem;
}

.mt-16 {
  margin-top: 16px;
}

.review-section-bg {
  background: rgba(18, 18, 22, 0.3);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.footer-phone {
  font-weight: 600;
  color: var(--text-primary);
}

/* ---------- The Bento Box Grid (Double-Bezel Cards) ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: var(--space-4);
}

.bento-card {
  background: rgba(9, 9, 12, 0.4);
  border: 1px solid rgba(223, 183, 108, 0.06);
  border-radius: var(--shell-radius);
  padding: var(--shell-padding);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  box-shadow: 0 1px 0 rgba(223, 183, 108, 0.02);
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--shell-radius);
  padding: var(--shell-padding);
  background: linear-gradient(135deg, rgba(223, 183, 108, 0.04), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.bento-card-inner {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
  box-shadow: var(--inner-highlight);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.bento-card:active {
  transform: translateY(-2px);
}

.bento-card:hover .bento-icon {
  box-shadow: 0 0 24px rgba(223, 183, 108, 0.3);
  background: var(--accent-dim);
  border-color: rgba(223, 183, 108, 0.3);
}

/* Spanning logic */
.bento-card.span-2-col { grid-column: span 2; }
.bento-card.span-2-row { grid-row: span 2; }

.bento-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-panel);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  color: var(--accent);
  border: 1px solid var(--border-subtle);
}

.bento-card-inner h3 {
  font-size: 1.35rem;
  margin-bottom: var(--space-2);
  font-weight: 700;
  margin-top: var(--space-4);
}

.bento-card-inner p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-4);
}

.bento-btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .bento-btn {
    width: 100%;
  }
}

/* Special styling for large bento cards - Luxury Dark Gold */
.bento-card.primary {
  background: linear-gradient(135deg, rgba(9, 9, 12, 0.6), rgba(223, 183, 108, 0.03));
  border-color: rgba(223, 183, 108, 0.1);
}

.bento-card.primary .bento-card-inner {
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(223, 183, 108, 0.04) 100%);
}

.bento-card.primary h3 { color: var(--accent); }
.bento-card.primary p { color: var(--text-secondary); }
.bento-card.primary .bento-icon {
  background: var(--accent-dim);
  color: var(--accent);
  border-color: rgba(223, 183, 108, 0.3);
  box-shadow: 0 0 15px rgba(223, 183, 108, 0.1);
}

.bento-card.primary:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(223, 183, 108, 0.08);
}

/* ---------- Fleet Section (Double-Bezel Product Cards) ---------- */
.fleet-pills {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-2);
  scrollbar-width: none;
}

.fleet-pills::-webkit-scrollbar {
  display: none;
}

.fleet-pill {
  white-space: nowrap;
  padding: 8px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--t-fast);
  scroll-snap-align: start;
}

.fleet-pill:hover {
  background: var(--accent-dim);
  color: var(--accent);
  border-color: rgba(223, 183, 108, 0.3);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.product-card {
  background: rgba(9, 9, 12, 0.4);
  border: 1px solid rgba(223, 183, 108, 0.06);
  border-radius: var(--shell-radius);
  padding: var(--shell-padding);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  box-shadow: 0 1px 0 rgba(223, 183, 108, 0.02);
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--shell-radius);
  padding: var(--shell-padding);
  background: linear-gradient(135deg, rgba(223, 183, 108, 0.04), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.product-card-inner {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--inner-highlight);
  flex: 1;
}

.product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.product-card:active {
  transform: translateY(-2px);
}

.product-image-wrapper {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

/* 3D Showroom Glow behind transparent pngs */
.product-image-wrapper::before {
  content: '';
  position: absolute;
  width: 65%;
  height: 65%;
  background: radial-gradient(circle, rgba(223, 183, 108, 0.12) 0%, rgba(0,0,0,0) 70%);
  filter: blur(8px);
  z-index: 1;
  pointer-events: none;
}

.product-image-wrapper img {
  width: 85%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.6s var(--ease-spring);
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bg-panel);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.725rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  text-transform: uppercase;
  z-index: 3;
}

.product-info {
  padding: var(--space-5) var(--space-3) var(--space-3);
}

.product-info h3 {
  font-size: 1.35rem;
  margin-bottom: var(--space-4);
  font-weight: 700;
}

.product-specs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border-subtle);
}

.spec-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.spec-item svg {
  color: var(--accent);
}

.product-card .btn {
  width: 100%;
}

/* ---------- Routes ---------- */
.routes-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.route-row {
  /* Button-reset so <button class="route-row"> visually matches the old <div>.
     Required because UA button styles add border, background, center text,
     and don't inherit font. Critical for keyboard accessibility (issue #2). */
  font: inherit;
  color: inherit;
  text-align: inherit;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Visible keyboard focus indicator (WCAG 2.4.7 Focus Visible, Level AA). */
.route-row:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.route-row:active {
  transform: scale(0.98);
}

.route-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.route-row:hover::before {
  opacity: 1;
}

.route-row:hover {
  background: var(--bg-panel);
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.route-dest {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.route-details {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.route-arrow {
  color: var(--accent);
  opacity: 0.6;
  transform: translateX(-6px);
  transition: opacity var(--t-fast), transform var(--t-fast);
}

.route-row:hover .route-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Trust & Credentials Bar ---------- */
.trust-bar {
  background: rgba(18, 18, 22, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
  z-index: 10;
  position: relative;
  margin-top: -24px;
  overflow: hidden; /* Mobile safety */
  max-width: 100%;
  box-sizing: border-box;
}

.trust-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.trust-item svg {
  color: var(--accent);
  filter: drop-shadow(0 0 4px rgba(223, 183, 108, 0.2));
}

/* Badge Row (Safety & Certifications) */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-pill svg {
  color: var(--accent);
}

/* ---------- Verified Guest Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 1px 0 rgba(223, 183, 108, 0.02);
}

.review-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 30px rgba(0,0,0,0.3);
}

.review-card:active {
  transform: translateY(0);
}

.stars {
  color: var(--accent);
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: var(--space-5);
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.9rem;
}

.reviewer-details h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.reviewer-details span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-date {
  font-size: 0.7rem;
  color: var(--accent);
  opacity: 0.7;
  display: block;
  margin-top: 2px;
}

/* ---------- Contact Us ---------- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(223, 183, 108, 0.15);
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--t-fast);
  line-height: 1.5;
}

.contact-item a:hover {
  color: var(--accent);
}

/* ---------- FAQ (Clean Accordion) ---------- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-base);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(223, 183, 108, 0.2);
}

.faq-item.open {
  background: rgba(9, 9, 12, 0.6);
  border-color: rgba(223, 183, 108, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: 24px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-base);
  color: var(--accent);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--bg-pure);
  border-color: var(--accent);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

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

.faq-answer > * {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 24px 24px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- Footer (Luxury Slate) ---------- */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-16) 0 var(--space-8);
  background: var(--bg-pure);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer-brand .nav-brand {
  margin-bottom: var(--space-4);
}

.footer-brand p {
  color: var(--text-secondary);
  max-width: 320px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 0;
}

.footer-nav h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
}

.footer-nav a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.825rem;
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform var(--t-fast);
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.whatsapp-fab:active {
  transform: scale(0.95);
}

.whatsapp-fab .float-y {
  animation-duration: 3s;
}

/* ---------- Mobile Menu & Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  cursor: pointer;
  z-index: 1003;
  min-width: 44px;
  min-height: 44px;
  padding: 6px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--t-base), opacity var(--t-base), background var(--t-base);
  border-radius: var(--radius-pill);
}

/* Hamburger active transformation to X */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--accent);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--accent);
}

/* ---------- Full-Screen Mobile Overlay (Masked Reveal) ---------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(9, 9, 12, 0.92);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-16) var(--space-8);
  gap: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

/* Staggered masked reveal for mobile nav items */
.mobile-nav > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 80ms);
}

.mobile-nav.open > * {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-header {
  margin-bottom: var(--space-2);
  text-align: center;
}

.mobile-nav-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.6;
}

.mobile-nav-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  width: 100%;
  max-width: 320px;
}

.mobile-nav-body a {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  width: 100%;
  text-align: center;
  padding: var(--space-3) 0;
  transition: color var(--t-fast);
  position: relative;
}

.mobile-nav-body a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--t-base);
  transform: translateX(-50%);
  border-radius: var(--radius-pill);
}

.mobile-nav-body a:hover::after,
.mobile-nav-body a:active::after,
.mobile-nav-body a.active::after {
  width: 60%;
}

.mobile-nav-body a:hover,
.mobile-nav-body a:active,
.mobile-nav-body a.active {
  color: var(--accent);
}

.mobile-nav-footer {
  text-align: center;
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
}

.mobile-nav-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-nav-phone {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent) !important;
  transition: opacity var(--t-fast);
}

.mobile-nav-phone:hover {
  opacity: 0.8;
}

/* Mobile Nav Overlay (thin backdrop blur only) */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- PWA Install Banner ---------- */
.pwa-install-banner {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 9999;
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(223, 183, 108, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: min(340px, 90vw);
  max-width: 440px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.pwa-install-banner.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.pwa-install-banner[hidden] {
  display: none;
}

.pwa-install-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.pwa-install-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}

.pwa-install-text {
  display: flex;
  flex-direction: column;
}

.pwa-install-text strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.pwa-install-text span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.pwa-install-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.pwa-install-btn {
  background: var(--accent);
  color: var(--text-inverse);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.pwa-install-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

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

.pwa-install-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}

.pwa-install-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

@media (max-width: 480px) {
  .pwa-install-banner {
    min-width: unset;
    max-width: calc(100% - 32px);
    bottom: 88px;
    padding: 14px 16px;
    gap: 12px;
  }

  .pwa-install-text strong {
    font-size: 0.85rem;
  }

  .pwa-install-text span {
    font-size: 0.7rem;
  }

  .pwa-install-icon {
    width: 40px;
    height: 40px;
  }

  .pwa-install-btn {
    font-size: 0.75rem;
    padding: 8px 16px;
  }
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  z-index: 10002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Subtle Grain/Noise Texture Overlay */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  z-index: 10001;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.1s linear;
  will-change: transform;
  box-shadow: 0 0 12px rgba(223, 183, 108, 0.4);
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 108px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  z-index: 99;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.scroll-top:active {
  transform: scale(0.92);
}

/* ---------- Form CRO: Button state machine ---------- */
.btn-label-loading,
.btn-label-success {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}


/* ----- State machine for generic btn-primary ----- */
.btn-primary .btn-label-default {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: opacity var(--t-base);
}

.btn-primary .btn-label-loading,
.btn-primary .btn-label-success {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

.btn-primary.is-loading .btn-label-default,
.btn-primary.is-success .btn-label-default {
  opacity: 0;
  pointer-events: none;
}

.btn-primary.is-loading .btn-label-loading {
  opacity: 1;
  pointer-events: auto;
}

.btn-primary.is-success .btn-label-success {
  opacity: 1;
  pointer-events: auto;
}

.btn-primary.is-loading {
  pointer-events: none;
  opacity: 0.85;
}

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

.spinner {
  animation: spin 0.8s linear infinite;
}


/* ===========================================
   RESPONSIVE (Max-width approach)
   =========================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
    gap: var(--space-8);
  }
  
  .hero-subtitle {
    margin: 0 auto;
  }

  .hero-hindi {
    justify-content: center;
  }

  .booking-app {
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  
  .bento-card.span-2-row {
    grid-row: auto;
  }

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

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

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 8px 8px 0;
  }

  .navbar-inner {
    border-radius: var(--radius-lg);
    padding: 8px 8px 8px 14px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-card.span-2-col,
  .bento-card.span-2-row {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-card {
    padding: var(--space-5);
  }

  .bento-card h3 {
    font-size: 1.25rem;
  }

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

  /* Trust Bar mobile layout */
  .trust-bar {
    padding: 16px 0;
    margin-top: 0;
  }

  .trust-flex {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 var(--space-4);
    gap: var(--space-3);
  }

  .trust-item {
    font-size: 0.85rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  /* ---------- Premium Horizontal Swipe Fleet Slider ---------- */
  .fleet-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: var(--space-4);
    padding: var(--space-2) clamp(16px, 4vw, 24px) var(--space-6);
    margin: 0 calc(-1 * clamp(16px, 4vw, 24px));
    scrollbar-width: none;
  }

  .fleet-grid::-webkit-scrollbar {
    display: none;
  }

  /* Fade right edge to hint at more content */
  .fleet-grid {
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 95%);
    mask-image: linear-gradient(to right, black 80%, transparent 95%);
  }

  .product-card {
    flex: 0 0 290px;
    scroll-snap-align: start;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    background: rgba(9, 9, 12, 0.4);
    border: 1px solid rgba(223, 183, 108, 0.06);
    padding: var(--shell-padding);
  }

  .product-card-inner {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--inner-highlight);
  }

  .product-image-wrapper {
    height: 190px;
  }

  .product-badge {
    top: 12px;
    left: 12px;
    font-size: 0.65rem;
    padding: 3px 10px;
  }

  .product-info {
    padding: var(--space-5) var(--space-3) var(--space-3);
  }

  .product-info h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-3);
  }

  .product-specs {
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
  }

  .spec-item {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .product-card .btn {
    width: 100%;
    padding: 14px;
    font-size: 0.9rem;
  }

  /* ---------- Premium Horizontal Swipe Reviews Slider ---------- */
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: var(--space-4);
    padding: var(--space-2) clamp(16px, 4vw, 24px) var(--space-6);
    margin: 0 calc(-1 * clamp(16px, 4vw, 24px));
    scrollbar-width: none;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .reviews-grid {
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 95%);
    mask-image: linear-gradient(to right, black 80%, transparent 95%);
  }

  .review-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    background: var(--bg-surface);
  }

  /* ---------- Routes Mobile ---------- */
  .routes-grid {
    gap: var(--space-3);
  }

  .route-dest {
    font-size: 1.1rem;
  }

  .route-row {
    padding: var(--space-3) var(--space-4);
  }

  .route-arrow {
    opacity: 0.6;
    transform: translateX(0);
  }

  /* ---------- FAB Adjustments on Mobile ---------- */
  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  }

  .whatsapp-fab svg {
    width: 28px;
    height: 28px;
  }

  .scroll-top {
    bottom: 88px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  /* ---------- Contact Us Mobile ---------- */
  .contact-details {
    align-items: stretch;
    text-align: left;
    gap: var(--space-3);
  }

  /* Compact, scannable rows: icon beside text inside a tappable card */
  .contact-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: var(--space-4);
    margin-top: 0 !important;
    padding: 14px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
  }

  .contact-item h4 {
    font-size: 1rem;
    margin-bottom: 2px;
  }

  /* Larger tap targets for call/email links */
  .contact-item a {
    display: inline-block;
    padding: 2px 0;
    font-size: 1rem;
  }

  .map-container {
    aspect-ratio: 16 / 11 !important;
    min-height: 280px !important;
    margin-top: var(--space-6);
  }
}

/* Contact section map — mobile overflow safety.
   iOS Safari can render iframes wider than their container even with width:100%.
   Force max-width:100% and overflow:hidden on the container, and constrain the iframe. */
.map-container {
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.map-container iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
}



/* ============================ ANIMATIONS ============================ */

/* ===========================================
   SCROLL ANIMATIONS & MICRO-INTERACTIONS
   (Ultra-Snappy, High-End App Feel)
   =========================================== */

/* ---------- Reveal Animations (Cinematic Blur + Translate) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

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

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Staggered Grid (CSS cascade with variable delay) ---------- */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 80ms);
}

/* Fallback nth-child delays */
.stagger-children.visible > *:nth-child(1) { --i: 1; }
.stagger-children.visible > *:nth-child(2) { --i: 2; }
.stagger-children.visible > *:nth-child(3) { --i: 3; }
.stagger-children.visible > *:nth-child(4) { --i: 4; }
.stagger-children.visible > *:nth-child(5) { --i: 5; }
.stagger-children.visible > *:nth-child(6) { --i: 6; }
.stagger-children.visible > *:nth-child(7) { --i: 7; }
.stagger-children.visible > *:nth-child(8) { --i: 8; }
.stagger-children.visible > *:nth-child(9) { --i: 9; }
.stagger-children.visible > *:nth-child(10) { --i: 10; }
.stagger-children.visible > *:nth-child(11) { --i: 11; }
.stagger-children.visible > *:nth-child(12) { --i: 12; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ---------- Hero Entrance (Immediate & Punchy) ---------- */
.hero-content h1 {
  animation: punchIn 1s var(--spring) 0.1s both;
}

.hero-subtitle {
  animation: punchIn 1s var(--spring) 0.2s both;
}

.hero-hindi {
  animation: fadeIn 1s var(--smooth) 0.3s both;
}

.booking-app {
  animation: slideUpSnappy 1s var(--spring) 0.3s both;
}

@keyframes punchIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideUpSnappy {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ---------- Button Ripple ---------- */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(223, 183, 108, 0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ---------- Magnetic/Pulse Effects ---------- */
.hero-glow {
  animation: pulseGlow 8s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes pulseGlow {
  0% { opacity: 0.5; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* ---------- Premium Float Animation (for FAB, badges) ---------- */
.float-y {
  animation: floatY 4s var(--ease-premium) infinite alternate;
}

@keyframes floatY {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

/* ---------- Counter Number --tick animation ---------- */
.tick-counter {
  display: inline-block;
  animation: tickPop 0.3s var(--spring);
}

@keyframes tickPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* ---------- Shimmer loading skeleton ---------- */
.skeleton {
  background: linear-gradient(90deg, var(--bg-panel) 25%, var(--bg-elevated) 50%, var(--bg-panel) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- Page transition on load ---------- */
.page-enter {
  animation: pageEnter 0.6s var(--ease-out);
}

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

/* ---------- Enhanced stagger with 3D card hover sequencing ---------- */
.stagger-children.card-stagger-3d > * {
  perspective: 800px;
}

.stagger-children.card-stagger-3d > *:hover {
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .stagger-children > * {
    opacity: 1;
    transform: none;
  }
}

/* ---------- NEW PREMIUM ANIMATIONS ---------- */

/* Shimmer Sweep */
@keyframes shimmerSweep {
  0% { transform: translateX(-100%) skewX(-15deg); }
  50%, 100% { transform: translateX(200%) skewX(-15deg); }
}

/* Breathing Glow */
@keyframes breathingGlow {
  0% { box-shadow: 0 0 10px rgba(223, 183, 108, 0.1), inset 0 0 5px rgba(223, 183, 108, 0.05); }
  50% { box-shadow: 0 0 25px rgba(223, 183, 108, 0.3), inset 0 0 10px rgba(223, 183, 108, 0.15); }
  100% { box-shadow: 0 0 10px rgba(223, 183, 108, 0.1), inset 0 0 5px rgba(223, 183, 108, 0.05); }
}

/* Elastic Bounce */
@keyframes elasticBounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.05) translateY(-2px); }
  50% { transform: scale(0.96) translateY(1px); }
  70% { transform: scale(1.02) translateY(-1px); }
  100% { transform: scale(1) translateY(0); }
}

/* Slide in from left/right */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

/* Gradient Text Shift */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Scroll Indicator Float */
@keyframes scrollIndicatorFloat {
  0% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
  100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
}

/* Notification Pulse */
@keyframes notifPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(223, 183, 108, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(223, 183, 108, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(223, 183, 108, 0); }
}



/* ====================== PREMIUM OVERRIDES =========================== */

/* ===========================================
   ULTIMATE PREMIUM OVERRIDES & PERFECTION
   Mobile-first, production-ready.
   =========================================== */

/* --- Navbar --- */
.navbar-inner {
  position: relative;
  overflow: hidden;
}
.navbar-inner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 200%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(223, 183, 108, 0.1), transparent);
  animation: shimmerSweep 8s infinite;
  pointer-events: none;
}
.nav-links a::after {
  left: 0;
  transform: none;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active::after {
  width: 100%;
  background: var(--accent);
}

/* --- Hero & "Sorted" Golden Block --- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 90px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
}

.hero-grid {
  gap: var(--space-8) !important;
}

.hero-content h1 span.golden-block {
  background: linear-gradient(135deg, #DFB76C 0%, #F5D98A 50%, #DFB76C 100%);
  color: #000;
  padding: 2px 14px 4px;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 6px 24px rgba(223, 183, 108, 0.35);
  transform: rotate(-1.5deg);
  position: relative;
  overflow: hidden;
  -webkit-text-fill-color: #000;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.hero-content h1 span.golden-block::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
  animation: shimmerSweep 4s infinite;
}

/* --- Luxury App Booking Form --- */
.booking-app {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  /* Override old style.css backgrounds — the glass goes on .luxury-glass */
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
}
.booking-app::before {
  display: none !important; /* Kill the old gradient mask border */
}

.luxury-glass {
  background: rgba(14, 14, 18, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(223, 183, 108, 0.15);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
  max-width: 100%; /* Mobile safety */
  min-width: 0;
  box-sizing: border-box;
  overflow: visible; /* Allow autocomplete dropdown to show below the form */
}

.luxury-glass .booking-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.luxury-glass .booking-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.luxury-glass .booking-hint {
  margin-left: auto;
}

.luxury-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

/* Trip-type selector */
.trip-type-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.trip-type-pill {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.trip-type-pill:hover {
  border-color: rgba(223, 183, 108, 0.4);
  color: var(--text-primary);
}
.trip-type-pill.active {
  border-color: var(--accent);
  background: rgba(223, 183, 108, 0.12);
  color: var(--text-primary);
}
.trip-type-pill:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Timeline */
.luxury-timeline {
  position: absolute;
  left: 12px;
  top: 8px;
  height: 82px;
  width: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
.timeline-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--text-tertiary);
  box-shadow: 0 0 0 3px rgba(9,9,12,0.8);
  flex-shrink: 0;
}
.dot-pickup { border-color: #10B981; background: #10B981; }
.dot-drop { border-color: var(--accent); background: var(--accent); }
.timeline-line {
  flex: 1;
  width: 2px;
  border-left: 2px dashed rgba(223, 183, 108, 0.25);
  margin: 4px 0;
}

.luxury-inputs-wrapper.luxury-inputs-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  position: relative;
  padding-left: 32px;
}
.luxury-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  max-width: 100%;
  min-width: 0;
}

.luxury-input-group {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.luxury-input-group .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-placeholder);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.luxury-input-group input,
.luxury-input-group select,
.luxury-input-group textarea {
  width: 100%;
  max-width: 100%; /* Mobile safety — inputs can't exceed their grid cell */
  min-width: 0;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 16px 16px 44px; /* Space for icon */
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.luxury-input-group input[type="date"],
.luxury-input-group input[type="time"] {
  padding: 16px; /* No icon for date/time usually, or browser native */
}
.luxury-input-group textarea {
  padding: 16px;
  resize: vertical;
  min-height: 56px;
}
.luxury-input-group input:hover,
.luxury-input-group select:hover,
.luxury-input-group textarea:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
.luxury-input-group input:focus,
.luxury-input-group select:focus,
.luxury-input-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(223, 183, 108, 0.1);
}
.luxury-input-group input::placeholder,
.luxury-input-group textarea::placeholder {
  color: var(--text-placeholder);
  font-weight: 400;
}
.luxury-input-group select:invalid {
  color: var(--text-placeholder);
  font-weight: 400;
}
.luxury-input-group select {
  cursor: pointer;
  padding-right: 40px; /* Space for arrow */
}
.luxury-input-group select option {
  background: #1e1e24;
  color: #fff;
  padding: 10px;
}
/* Custom dropdown arrow for select */
.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  pointer-events: none;
}
.select-arrow::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  opacity: 0.7;
}
.luxury-input-group select:focus ~ .select-arrow::after {
  opacity: 1;
  transform: rotate(225deg) translate(-2px, -2px);
  transition: transform 0.2s ease;
}
/* Focus state for icons */
.luxury-input-group input:focus ~ .input-icon,
.luxury-input-group select:focus ~ .input-icon,
.luxury-input-group input:not(:placeholder-shown) ~ .input-icon,
.luxury-input-group select:valid ~ .input-icon {
  color: var(--accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Gold tinted calendar/time pickers */
.luxury-input-group input::-webkit-calendar-picker-indicator,
.luxury-input-group input::-webkit-time-picker-indicator {
  filter: invert(0.8) sepia(1) saturate(5) hue-rotate(15deg);
  cursor: pointer;
}

/* Error state */
.luxury-input-group input.field-error,
.luxury-input-group textarea.field-error {
  border-color: #EF4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
}
.luxury-input-group .field-error-msg {
  display: block;
  font-size: 0.7rem;
  color: #EF4444;
  margin-top: 4px;
  padding-left: 2px;
}

/* Valid state */
.luxury-input-group input.is-valid {
  border-color: #10B981;
}

/* Vehicle hint in new form */
.luxury-form .vehicle-hint-wrapper {
  min-height: 0;
}
.luxury-form .vehicle-hint {
  font-size: 0.8rem;
  color: var(--accent);
  padding: 6px 0 0;
}
.luxury-form .vehicle-hint.hide-field {
  display: none;
}

/* Luxury Button */
.btn-luxury {
  width: 100%;
  background: linear-gradient(135deg, #DFB76C 0%, #F5D98A 50%, #DFB76C 100%);
  color: #000;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  box-shadow: 0 8px 20px rgba(223, 183, 108, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.btn-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(223, 183, 108, 0.35);
}
.btn-luxury:active {
  transform: translateY(0);
}
.btn-luxury::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: shimmerSweep 3s infinite;
}
.btn-luxury svg {
  flex-shrink: 0;
}
/* btn-luxury toggles its labels via display; neutralize the generic
   absolute-overlay + opacity:0 rule so the active label is actually visible. */
.btn-luxury .btn-label-default,
.btn-luxury .btn-label-loading,
.btn-luxury .btn-label-success { position: static; inset: auto; opacity: 1; pointer-events: auto; }
.btn-luxury .btn-label-default { display: flex; align-items: center; gap: 8px; }
.btn-luxury .btn-label-loading,
.btn-luxury .btn-label-success { display: none; }
.btn-luxury.is-loading .btn-label-default { display: none; }
.btn-luxury.is-loading .btn-label-loading { display: flex; align-items: center; gap: 6px; }
.btn-luxury.is-success .btn-label-default { display: none; }
.btn-luxury.is-success .btn-label-loading { display: none; }
.btn-luxury.is-success .btn-label-success { display: flex; align-items: center; gap: 6px; }
.btn-luxury.is-success {
  background: #10B981;
  color: #fff;
}

/* --- Stats Counter Section --- */
.stats-section {
  padding: var(--space-8) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 10;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  text-align: center;
}
.stat-item h4 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: var(--space-2);
}
.stat-item p {
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

/* --- Bento Card Background Slideshow (Ken Burns Cinematic) --- */
.bento-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  overflow: hidden;
}
.bento-slideshow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 9, 12, 0.45) 0%,
    rgba(9, 9, 12, 0.55) 30%,
    rgba(9, 9, 12, 0.80) 75%,
    rgba(9, 9, 12, 0.92) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.bento-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.bento-slide.active {
  opacity: 1;
  animation: kenBurnsZoomIn 8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
.bento-slide.slide-out {
  opacity: 0;
  animation: kenBurnsZoomOut 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Ken Burns keyframes — alternating zoom directions for variety */
@keyframes kenBurnsZoomIn {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1%, -1%); }
}
@keyframes kenBurnsZoomOut {
  0%   { transform: scale(1.12) translate(-1%, -1%); opacity: 1; }
  100% { transform: scale(1.15) translate(-1.5%, -1.5%); opacity: 0; }
}
/* Alternate Ken Burns directions per nth-child for variety */
.bento-slide:nth-child(even).active {
  animation-name: kenBurnsPanRight;
}
.bento-slide:nth-child(even).slide-out {
  animation-name: kenBurnsPanRightOut;
}
@keyframes kenBurnsPanRight {
  0%   { transform: scale(1.02) translate(1%, 0); }
  100% { transform: scale(1.12) translate(-0.5%, 1%); }
}
@keyframes kenBurnsPanRightOut {
  0%   { transform: scale(1.12) translate(-0.5%, 1%); opacity: 1; }
  100% { transform: scale(1.15) translate(-1%, 1.5%); opacity: 0; }
}
.bento-slide:nth-child(3n).active {
  animation-name: kenBurnsPanUp;
}
.bento-slide:nth-child(3n).slide-out {
  animation-name: kenBurnsPanUpOut;
}
@keyframes kenBurnsPanUp {
  0%   { transform: scale(1) translate(0, 2%); }
  100% { transform: scale(1.1) translate(0.5%, -1%); }
}
@keyframes kenBurnsPanUpOut {
  0%   { transform: scale(1.1) translate(0.5%, -1%); opacity: 1; }
  100% { transform: scale(1.12) translate(0.5%, -1.5%); opacity: 0; }
}

/* Ensure text content stays above the slideshow */
.bento-card-inner .bento-icon,
.bento-card-inner h3,
.bento-card-inner p,
.bento-card-inner .bento-btn {
  position: relative;
  z-index: 2;
}
/* Cards with slideshows get enhanced text shadows for readability */
.bento-card-inner:has(.bento-slideshow) h3 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 0 4px rgba(0,0,0,0.4);
}
.bento-card-inner:has(.bento-slideshow) p {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}
/* Make the bento-card-inner backgrounds transparent when slideshow is present */
.bento-card-inner:has(.bento-slideshow) {
  background: transparent !important;
}
/* Override the bento-card background too */
.bento-card:has(.bento-slideshow) {
  background: rgba(9, 9, 12, 0.3) !important;
}
/* Hover intensifies the image brightness slightly */
.bento-card:hover .bento-slideshow::after {
  background: linear-gradient(
    180deg,
    rgba(9, 9, 12, 0.35) 0%,
    rgba(9, 9, 12, 0.45) 30%,
    rgba(9, 9, 12, 0.72) 75%,
    rgba(9, 9, 12, 0.88) 100%
  );
  transition: background 0.6s ease;
}
/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .bento-slide.active,
  .bento-slide.slide-out {
    animation: none !important;
    transform: scale(1) translate(0, 0) !important;
  }
  .bento-slide {
    transition: opacity 0.5s ease !important;
  }
}

/* --- Bento Grid / Services --- */
.bento-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(30, 30, 36, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--spring), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
/* Spotlight Hover Effect via premium.js */
.bento-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(223, 183, 108, 0.12), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}
.bento-card-inner {
  position: relative;
  z-index: 1; /* Content above spotlight */
}
/* Noise Texture */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}
.bento-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.15), 0 25px 50px rgba(0,0,0,0.7);
  border-color: rgba(223, 183, 108, 0.4);
}
.bento-card:hover::after {
  opacity: 1;
}
.bento-card.primary {
  background-image: radial-gradient(circle at top right, rgba(223, 183, 108, 0.12), transparent 60%);
}
.bento-icon {
  transition: transform 0.5s var(--spring);
}
.bento-card:hover .bento-icon {
  transform: rotate(12deg) scale(1.15) translateY(-4px);
  filter: drop-shadow(0 4px 10px rgba(223, 183, 108, 0.3));
}

/* --- Fleet Cards (Showroom) --- */
.fleet-grid {
  gap: var(--space-8);
}
.product-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.product-card-inner {
  background: linear-gradient(180deg, rgba(30,30,36,0.1) 0%, rgba(30,30,36,0.85) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 28px 22px;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease;
  overflow: hidden;
}
/* Spotlight Hover Effect */
.product-card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(223, 183, 108, 0.15), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}
.product-card:hover .product-card-inner {
  transform: translateY(-8px);
  border-color: rgba(223, 183, 108, 0.5);
}
.product-card:hover .product-card-inner::before {
  opacity: 1;
}
.product-card-inner > * {
  position: relative;
  z-index: 1;
}
.product-card-inner::after {
  content: '';
  position: absolute;
  bottom: -16px; left: 12%; width: 76%; height: 16px;
  background: radial-gradient(ellipse at center, rgba(223, 183, 108, 0.3) 0%, transparent 70%);
  filter: blur(6px);
  opacity: 0.3;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.product-card:hover .product-card-inner::after {
  opacity: 0.7;
}
.product-image-wrapper {
  background: transparent !important;
  padding: 0;
  margin-bottom: 20px;
  position: relative;
}
.product-image-wrapper img {
  filter: drop-shadow(0 20px 20px rgba(0,0,0,0.7));
  transform: scale(1.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-image-wrapper img {
  transform: scale(1.12) translateY(-3px);
}
.product-badge {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: var(--text-primary) !important;
  backdrop-filter: blur(6px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  border-radius: 20px !important;
  font-weight: 600;
  padding: 5px 12px;
}

/* --- Reviews --- */
.review-card {
  background: rgba(30, 30, 36, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
  border-radius: 20px;
  transition: transform 0.3s ease;
}
.review-card:hover {
  transform: translateY(-3px);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -4px; right: 16px;
  font-size: 6rem;
  color: rgba(223, 183, 108, 0.07);
  font-family: Georgia, serif;
  z-index: -1;
  line-height: 1;
}
.reviewer-avatar {
  background: linear-gradient(135deg, var(--bg-surface), var(--accent-dim));
  box-shadow: 0 0 0 2px var(--bg-surface), 0 0 0 4px rgba(223, 183, 108, 0.2);
  border: none;
}

/* --- Routes --- */
.route-row {
  position: relative;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  margin-bottom: 6px;
  border: 1px solid rgba(255,255,255,0.03);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.route-row:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(223, 183, 108, 0.2);
}

/* --- FAQ --- */
.faq-item {
  counter-increment: faq-counter;
}
.faq-question::before {
  content: '0' counter(faq-counter);
  font-size: 0.8rem;
  color: var(--accent);
  opacity: 0.4;
  font-weight: 700;
  flex-shrink: 0;
  width: 24px;
  transition: opacity 0.3s ease;
}
.faq-item.open .faq-question::before {
  opacity: 1;
}

/* --- Footer --- */
.footer {
  border-top: none;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.25;
}
.footer-nav a {
  position: relative;
  display: inline-block;
}
.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; width: 0%; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.footer-nav a:hover::after {
  width: 100%;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollIndicatorFloat 2s infinite ease-in-out;
  pointer-events: none;
  z-index: 10;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

/* --- Cursor Glow --- */
#cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(223, 183, 108, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
}

/* --- Carousel Dots --- */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-4);
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* --- Section Dividers --- */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(223, 183, 108, 0.15), transparent);
  margin: 0 auto;
}


/* ===========================================
   RESPONSIVE — TABLET (max 1024px)
   =========================================== */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 30px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px !important;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 7vw, 3.2rem) !important;
    margin-bottom: 8px !important;
  }
  .hero-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 12px !important;
  }
  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0;
  }
  .hero-badge {
    padding: 4px 8px;
    font-size: 0.7rem;
  }
  .booking-app {
    max-width: 100% !important;
    margin: 0 auto;
  }
  .scroll-indicator {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }
  .stat-item h4 {
    font-size: 2rem;
  }
}


/* ===========================================
   RESPONSIVE — MOBILE (max 768px)
   =========================================== */
@media (max-width: 768px) {
  .hero {
    padding-top: 85px;
    padding-bottom: 20px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px !important;
  }
  .hero-content h1 {
    font-size: clamp(1.75rem, 8vw, 2.8rem) !important;
    margin-bottom: 6px !important;
  }
  .hero-content h1 span.golden-block {
    padding: 1px 10px 2px;
    border-radius: 6px;
  }
  .hero-subtitle {
    font-size: 0.8rem !important;
    margin-bottom: 10px !important;
  }
  .hero-hindi {
    font-size: 0.75rem;
  }

  .luxury-glass {
    padding: 16px;
    border-radius: 18px;
  }
  .luxury-glass .booking-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  .luxury-glass .booking-header h3 {
    font-size: 1.15rem;
  }
  .luxury-form {
    gap: 8px;
    width: 100%;
    min-width: 0;
  }
  .trip-type-selector {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 6px;
    margin-bottom: 12px;
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    /* Fade the right edge to hint that the pill row scrolls horizontally */
    -webkit-mask-image: linear-gradient(to right, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, black 88%, transparent 100%);
    width: 100%;
    min-width: 0;
  }
  .trip-type-selector::-webkit-scrollbar {
    display: none;
  }
  .trip-type-pill {
    display: inline-flex;
    align-items: center;
    min-height: 44px;  /* U7 fix: was 40px — bumped to 44px Apple HIG minimum touch target */
    padding: 10px 16px;
    font-size: 0.8rem;
    scroll-snap-align: start;
  }
  .luxury-inputs-wrapper {
    gap: 8px;
    padding-left: 28px;
  }
  .luxury-timeline {
    left: 8px;
    height: 70px;
  }
  .luxury-row {
    gap: 8px;
  }
  .btn-luxury {
    min-height: 50px;
    padding: 14px;
    font-size: 0.98rem;
    margin-top: 4px;
    border-radius: 12px;
  }

  .scroll-indicator {
    display: none;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
  }
  .stat-item h4 {
    font-size: 1.5rem;
  }
  .stat-item p {
    font-size: 0.7rem;
  }

  /* Bento Grid Mobile Horizontal Swipe */
  .bento-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: var(--space-4);
    padding: var(--space-2) 16px 16px;
    margin: 0 -16px;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 98%);
    mask-image: linear-gradient(to right, black 85%, transparent 98%);
  }
  .bento-grid::-webkit-scrollbar {
    display: none;
  }
  .bento-card {
    flex: 0 0 85vw;
    scroll-snap-align: center;
    height: auto;
  }
  .bento-card.span-2-col,
  .bento-card.span-2-row {
    grid-column: auto;
    grid-row: auto;
  }

  /* FAQ Compact Mobile */
  .faq-question {
    padding: 16px 20px;
    font-size: 1.05rem;
  }
  .faq-answer p {
    padding: 0 20px 20px 20px;
    font-size: 0.9rem;
  }

  /* Reviews Horizontal Swipe */
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: var(--space-4);
    padding: var(--space-2) 16px 16px;
    margin: 0 -16px;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 95%);
    mask-image: linear-gradient(to right, black 80%, transparent 95%);
  }
  .reviews-grid::-webkit-scrollbar {
    display: none;
  }
  .review-card {
    flex: 0 0 clamp(260px, 85vw, 280px);
    scroll-snap-align: center;
    border-radius: 16px;
  }
  .review-card::before {
    font-size: 4rem;
    right: 12px;
  }

  /* Routes Compact Grid Mobile */
  .routes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    padding: var(--space-2) 0 var(--space-4);
    margin: 0;
  }
  .route-row {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-4);
    border-radius: var(--radius-md);
    margin-bottom: 0;
  }
  .route-dest {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  .route-details {
    font-size: 0.75rem;
    margin-bottom: var(--space-3);
  }
  .route-arrow {
    align-self: flex-end;
    margin-top: auto;
  }
  .route-row.custom-route {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }
  .route-row.custom-route .route-arrow {
    align-self: center;
    margin-top: 0;
  }

  /* Cursor glow: off on mobile (no mouse) */
  #cursor-glow {
    display: none;
  }
}


/* ===========================================
   RESPONSIVE — SMALL PHONES (max 400px)
   =========================================== */
@media (max-width: 400px) {
  .hero {
    padding-top: 75px;
    padding-bottom: 12px;
  }
  .hero-content h1 {
    font-size: clamp(1.5rem, 9vw, 2.2rem) !important;
  }
  .hero-content h1 span.golden-block {
    padding: 0 8px 2px;
    border-radius: 5px;
  }
  .luxury-glass {
    padding: 14px;
    border-radius: 14px;
  }
  .luxury-glass .booking-header h3 {
    font-size: 1.05rem;
  }
  .luxury-form {
    gap: 6px;
  }
  .luxury-inputs-wrapper {
    gap: 8px;
    padding-left: 24px;
  }
  .luxury-row {
    gap: 6px;
    /* Mobile fix: collapse to 1 column on very narrow screens (≤400px).
       iOS Safari date/time inputs have a minimum rendered width of ~150px.
       At 375px viewport (iPhone SE), two side-by-side columns get ~143px each,
       which is below the iOS minimum — Safari forces them wider, causing
       horizontal overflow that gets clipped by the hero's overflow:hidden.
       Single-column layout prevents this entirely. */
    grid-template-columns: 1fr;
  }
  /* Keep inputs at 16px so iOS Safari never auto-zooms on focus; trim padding instead */
  .luxury-input-group input,
  .luxury-input-group select,
  .luxury-input-group textarea {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .luxury-input-group input[type="date"],
  .luxury-input-group input[type="time"] {
    padding-left: 12px;
    padding-right: 8px;
  }
  .trip-type-pill {
    min-height: 44px;  /* U7 fix: was 38px — bumped to 44px Apple HIG minimum */
    padding: 10px 14px;
  }
  .btn-luxury {
    padding: 13px;
    font-size: 0.95rem;
  }
  .stat-item h4 {
    font-size: 1.25rem;
  }
  .stat-item p {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }
}
/* ---------- Reviews: aggregate rating + empty/error states ---------- */
.reviews-aggregate {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin-bottom: var(--space-8);
}
.reviews-aggregate-score {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.reviews-aggregate-stars { display: inline-flex; color: var(--accent); gap: 2px; }
.reviews-aggregate-count { color: var(--text-secondary); font-size: 0.9rem; }

.reviews-empty {
  text-align: center; padding: var(--space-12) var(--space-6);
  background: rgba(255, 255, 255, 0.02); border: 1px dashed rgba(223, 183, 108, 0.3);
  border-radius: var(--radius-lg); max-width: 520px; margin: 0 auto;
}
.reviews-empty h3 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 8px; }
.reviews-empty p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 20px; }
.reviews-cta {
  display: inline-block; padding: 12px 28px; background: var(--accent); color: var(--bg-pure);
  border-radius: var(--radius-pill); font-weight: 600; text-decoration: none; font-size: 0.95rem;
  transition: background var(--t-fast);
}
.reviews-cta:hover { background: var(--accent-hover); }

/* ===========================================
   NUCLEAR MOBILE OVERFLOW CONTAINMENT
   Forces overflow:hidden on every container in
   the hero and contact sections at mobile width.
   This is the last line of defense — even if we
   can't identify the exact overflowing element
   (because it only happens on iOS Safari WebKit,
   not Chromium Blink), this ensures it gets clipped.
   =========================================== */
@media (max-width: 768px) {
  /* Hero and container: keep horizontal overflow clipped.
     overflow-x: clip doesn't force overflow-y to auto (unlike hidden),
     so the autocomplete dropdown can show vertically. */
  .hero,
  .hero .container,
  .hero .hero-grid,
  .hero .hero-content {
    overflow-x: clip;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Form containers: use overflow-x:clip (not overflow:hidden) so the
     autocomplete dropdown can show VERTICALLY below the input while
     still clipping horizontal overflow. */
  .hero .booking-app,
  .hero .booking-app-inner,
  .hero .luxury-glass,
  .hero .luxury-form,
  .hero .luxury-inputs-wrapper,
  .hero .luxury-row,
  .hero .luxury-input-group {
    overflow-x: clip;
    overflow-y: visible;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* The trip-type pills need to scroll horizontally — give them overflow-x:auto
     but keep overflow-y:hidden so they don't contribute to vertical scroll */
  .hero .trip-type-selector {
    overflow-x: auto;
    overflow-y: hidden;
  }

  /* Every container in the contact section */
  #contact,
  #contact .container,
  #contact .hero-grid,
  #contact .reveal,
  #contact .reveal-left,
  #contact .map-container,
  #contact .contact-details,
  #contact .contact-item {
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Force the map iframe to never exceed its container */
  #contact .map-container iframe {
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Force ALL form inputs to never exceed their container */
  .hero input,
  .hero select,
  .hero textarea,
  .hero button {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* ===========================================
   CUSTOM AUTOCOMPLETE DROPDOWN
   Replaces native <datalist> which is broken on
   mobile (stale suggestions, can't style, no
   clear button, no custom-entry confirmation).
   Uses APG combobox pattern (ARIA 1.2).
   =========================================== */

/* The input group is already position:relative, so the dropdown
   anchors to it. */
.autocomplete-field { position: relative; }

/* Clear (x) button — appears when input has text */
.autocomplete-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.autocomplete-clear:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}
.autocomplete-clear[hidden] { display: none; }

/* Make room for the clear button when it's visible */
.autocomplete-field .autocomplete-clear:not([hidden]) ~ input {
  padding-right: 48px !important;
}

/* The dropdown */
.autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  min-width: 100%;
  max-height: 240px; /* ~5 items at 48px each */
  overflow-y: auto;
  overflow-x: clip;
  overscroll-behavior: contain; /* Don't scroll page behind dropdown */
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(223, 183, 108, 0.05);
  z-index: 1000;
  padding: 4px 0;
  -webkit-tap-highlight-color: transparent;
  scrollbar-width: thin;
  scrollbar-color: var(--text-tertiary) transparent;
}
.autocomplete-dropdown[hidden] { display: none; }
.autocomplete-dropdown::-webkit-scrollbar {
  width: 4px;
}
.autocomplete-dropdown::-webkit-scrollbar-thumb {
  background: var(--text-tertiary);
  border-radius: 2px;
}

/* Each suggestion item */
.autocomplete-item {
  display: flex;
  align-items: center;
  min-height: 48px; /* Apple HIG + Material Design touch target */
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  -webkit-tap-highlight-color: transparent;
  gap: 10px;
}
.autocomplete-item:hover,
.autocomplete-item.active {
  background: rgba(223, 183, 108, 0.10);
  color: var(--text-primary);
}
.autocomplete-item.active {
  background: rgba(223, 183, 108, 0.15);
}

/* The "Use '<text>'" custom-entry option — distinct visual */
.autocomplete-item.custom {
  color: var(--accent);
  border-top: 1px solid var(--border-subtle);
  margin-top: 2px;
  padding-top: 14px;
}
.autocomplete-item.custom:hover,
.autocomplete-item.custom.active {
  background: rgba(223, 183, 108, 0.12);
}
.autocomplete-item.custom .custom-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
}
.autocomplete-item .item-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--text-tertiary);
  opacity: 0.7;
}
.autocomplete-item.active .item-icon {
  color: var(--accent);
  opacity: 1;
}

/* "No suggestions" state */
.autocomplete-empty {
  padding: 16px;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  text-align: center;
  font-style: italic;
}

/* Suggestion group label (optional — for categorized lists) */
.autocomplete-group-label {
  padding: 8px 16px 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
}
