/* ============================================================
   SUNDARA TRAVELS – Redesigned Style
   New Palette: #0F172A / #2563EB / #F97316 / #F8FAFC
   Font: Inter + Space Grotesk
   ============================================================ */

/* ── Variables ────────────────────────────────────────────── */
:root {
  --primary:       #0F172A;
  --secondary:     #2563EB;
  --accent:        #F97316;
  --accent-dark:   #ea6a0a;
  --bg:            #F8FAFC;
  --bg2:           #EFF6FF;
  --card-bg:       rgba(255,255,255,0.85);
  --card-border:   rgba(37,99,235,0.1);
  --text-primary:  #0F172A;
  --text-secondary:#475569;
  --text-muted:    #94A3B8;
  --radius:        16px;
  --radius-sm:     10px;
  --radius-pill:   999px;
  --shadow-sm:     0 2px 12px rgba(15,23,42,0.06);
  --shadow-md:     0 8px 32px rgba(15,23,42,0.10);
  --shadow-lg:     0 20px 60px rgba(15,23,42,0.14);
  --shadow-accent: 0 6px 24px rgba(249,115,22,0.3);
  --shadow-blue:   0 6px 24px rgba(37,99,235,0.25);
  --transition:    all 0.3s cubic-bezier(.4,0,.2,1);
  --font:          'Plus Jakarta Sans', 'Manrope', sans-serif;
  --font-heading:  'Manrope', 'Plus Jakarta Sans', sans-serif;
  --nav-h:         70px;
}

[data-theme="dark"] {
  --bg:            #0B1120;
  --bg2:           #111827;
  --card-bg:       rgba(17,24,39,0.85);
  --card-border:   rgba(37,99,235,0.15);
  --text-primary:  #F1F5F9;
  --text-secondary:#94A3B8;
  --text-muted:    #64748B;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.3);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.4);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
  transition: background 0.35s, color 0.35s;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 4px; }
::selection { background: rgba(249,115,22,0.2); }

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; }

/* ── Utilities ────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #F97316, #FB923C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.section-badge span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249,115,22,0.08);
  border: 1.5px solid rgba(249,115,22,0.25);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.75;
}

/* ── Glass Card ───────────────────────────────────────────── */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.glass-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* ── Form System ──────────────────────────────────────────── */
.form-group-custom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group-custom label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}
.form-group-custom label i { color: var(--accent); font-size: 0.7rem; }
.form-input-custom {
  width: 100%;
  padding: 11px 14px;
  background: rgba(15,23,42,0.04);
  border: 1.5px solid rgba(15,23,42,0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}
[data-theme="dark"] .form-input-custom {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: #F1F5F9;
}
.form-input-custom::placeholder { color: var(--text-muted); }
.form-input-custom:focus {
  border-color: var(--secondary);
  background: rgba(37,99,235,0.04);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.form-input-custom option { background: #1e293b; color: #fff; }
.form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary-custom:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(249,115,22,0.4);
  color: #fff;
}
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(15,23,42,0.15);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
[data-theme="dark"] .btn-outline-custom { border-color: rgba(255,255,255,0.15); color: #F1F5F9; }
.btn-outline-custom:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(249,115,22,0.05);
}
.btn-book-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-accent);
  position: relative;
  overflow: hidden;
}
.btn-book-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249,115,22,0.45);
  background: var(--accent-dark);
}
.btn-book-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ══════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════ */
#mainNav {
  height: var(--nav-h);
  background: rgba(248,250,252,0.92);
  backdrop-filter: blur(20px) saturate(2);
  -webkit-backdrop-filter: blur(20px) saturate(2);
  border-bottom: 1px solid rgba(37,99,235,0.08);
  box-shadow: 0 1px 16px rgba(15,23,42,0.05);
  transition: var(--transition);
  z-index: 1000;
  position: sticky;
  top: 0;
}
[data-theme="dark"] #mainNav {
  background: rgba(11,17,32,0.94);
  border-bottom-color: rgba(255,255,255,0.06);
}
#mainNav.scrolled { box-shadow: 0 4px 24px rgba(15,23,42,0.12); }

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.brand-icon {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem; flex-shrink: 0;
}
.brand-text { color: var(--text-primary); letter-spacing: -0.3px; }
.brand-accent { color: var(--accent); }

/* Collapse */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    align-items: center;
    width: 100%;
  }
}
.navbar-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.navbar-nav .nav-item { white-space: nowrap; }
.navbar-nav .nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary) !important;
  padding: 7px 12px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--text-primary) !important; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 16px;
}
.dark-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-secondary);
  font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer;
}
.dark-toggle:hover { color: var(--accent); transform: rotate(15deg); }
.btn-book-nav {
  background: var(--primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn-book-nav:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
  color: #fff !important;
}
.navbar-toggler { border: none; padding: 8px; background: transparent; }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.toggler-icon span {
  display: block; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════════════════
   HERO — Split Screen
   ══════════════════════════════════════════════════════════ */
.hero-section {
  min-height: calc(100vh - var(--nav-h));
  background: var(--primary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* Geometric BG */
.hero-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Background animated elements */
.hero-bg-animated { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-road-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.floating-pin {
  position: absolute; color: var(--accent); font-size: 1.4rem;
  filter: drop-shadow(0 4px 10px rgba(249,115,22,0.4));
  animation: floatPin 4s ease-in-out infinite;
}
.pin-1 { top: 22%; left: 7%; animation-delay: 0s; }
.pin-2 { top: 60%; left: 12%; animation-delay: 1.5s; font-size: 1rem; color: #60A5FA; }
.pin-3 { top: 28%; left: 46%; animation-delay: 0.8s; font-size: 1.7rem; color: #60A5FA; }
.floating-car {
  position: absolute; bottom: 18%; left: -5%; font-size: 2rem; color: var(--accent);
  opacity: 0.25; animation: driveCar 14s linear infinite;
}

/* Hero Grid */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 0;
  align-items: stretch;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 24px;
  position: relative;
  z-index: 2;
}

/* Left */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 48px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--accent); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1px; padding: 6px 14px; border-radius: var(--radius-pill);
  margin-bottom: 22px; width: fit-content;
}
.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 30px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-accent); transition: var(--transition);
}
.btn-hero-primary:hover { background: var(--accent-dark); transform: translateY(-3px); color: #fff; box-shadow: 0 14px 36px rgba(249,115,22,0.45); }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); color: #fff;
  font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.18); transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.15); color: #fff; transform: translateY(-3px); }

/* Trust row */
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.85rem;
}
.star-icon { gap: 1px; font-size: 0.5rem; flex-direction: row; }
.trust-num { font-size: 1rem; font-weight: 800; color: #fff; line-height: 1; display: block; }
.trust-label { font-size: 0.68rem; color: rgba(255,255,255,0.5); display: block; }
.trust-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.1); }

/* Right — Booking Card */
.hero-right { position: relative; display: flex; align-items: center; }
.booking-card {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  backdrop-filter: blur(28px) saturate(2) !important;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  width: 100%;
}
[data-theme="light"] .booking-card {
  background: rgba(255,255,255,0.92) !important;
  border: 1px solid rgba(37,99,235,0.1) !important;
  box-shadow: 0 24px 64px rgba(15,23,42,0.18);
}
.booking-card-header { margin-bottom: 22px; }
.booking-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 800;
  color: #fff; margin-bottom: 3px;
  display: flex; align-items: center; gap: 8px;
}
[data-theme="light"] .booking-card-header h3 { color: var(--text-primary); }
.booking-card-header h3 i { color: var(--accent); }
.booking-card-header p { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin: 0; }
[data-theme="light"] .booking-card-header p { color: var(--text-muted); }

/* Form inputs inside booking card (dark bg) */
.booking-card .form-input-custom {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
[data-theme="light"] .booking-card .form-input-custom {
  background: #F8FAFC;
  border-color: rgba(15,23,42,0.12);
  color: var(--text-primary);
}
.booking-card .form-input-custom::placeholder { color: rgba(255,255,255,0.3); }
[data-theme="light"] .booking-card .form-input-custom::placeholder { color: var(--text-muted); }
.booking-card .form-input-custom:focus {
  border-color: var(--accent);
  background: rgba(249,115,22,0.06);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}
.booking-card .form-group-custom label { color: rgba(255,255,255,0.65); }
[data-theme="light"] .booking-card .form-group-custom label { color: var(--text-secondary); }

/* Fare preview */
.fare-preview {
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px; text-align: center;
  margin-bottom: 14px;
}

/* ══════════════════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--primary);
  padding: 28px 0;
  position: relative;
}
.stats-bar::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,0.4), transparent);
}
.stats-grid {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.stat-item { flex: 1; min-width: 120px; text-align: center; padding: 10px 16px; }
.stat-num { display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--accent); line-height: 1; }
.stat-suffix { font-size: 1.4rem; font-weight: 900; color: var(--accent); }
.stat-label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   SECTION DIVIDER
   ══════════════════════════════════════════════════════════ */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.2), transparent);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════ */
.section-about { padding: 100px 0; background: var(--bg); }
.about-content { max-width: 860px; margin: 0 auto; }
.about-lead {
  font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.85;
}
.about-mission-vision { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.mv-card { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; }
.mv-icon {
  width: 42px; height: 42px; min-width: 42px; border-radius: 12px;
  background: rgba(249,115,22,0.1); border: 1.5px solid rgba(249,115,22,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem;
}
.mv-card h5 { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.mv-card p { font-size: 0.82rem; color: var(--text-secondary); margin: 0; line-height: 1.6; }

.about-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.about-feat-card { padding: 20px 16px; text-align: center; }
.feat-icon {
  width: 50px; height: 50px; margin: 0 auto 12px;
  background: var(--primary); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(15,23,42,0.2);
}
.about-feat-card h6 { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; }
.about-feat-card p { font-size: 0.78rem; color: var(--text-secondary); margin: 0; line-height: 1.5; }
.rounded-premium { border-radius: var(--radius); }
/* Remove old image wrap styles */
.about-img-wrap, .about-img-main, .about-img-badge, .about-img-badge2 { display: none; }

/* ══════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════ */
.section-services { padding: 100px 0; background: var(--bg2); }
[data-theme="dark"] .section-services { background: #0f172a; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  padding: 28px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 60px; height: 60px; margin: 0 auto 16px;
  border-radius: 16px;
  background: rgba(249,115,22,0.08);
  border: 1.5px solid rgba(249,115,22,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.3rem;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--accent); color: #fff;
  transform: scale(1.08) rotate(-5deg);
  box-shadow: var(--shadow-accent);
}
.service-card h5 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.service-card p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.service-link {
  font-size: 0.78rem; font-weight: 700; color: var(--secondary);
  display: inline-flex; align-items: center; gap: 5px; transition: var(--transition);
}
.service-card:hover .service-link { gap: 10px; }

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════════════════════════════ */
.section-why { padding: 100px 0; background: var(--bg); }
.why-timeline { position: relative; max-width: 880px; margin: 0 auto; padding: 20px 0; }
.why-timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--secondary));
  transform: translateX(-50%); border-radius: 2px;
}
.why-item { display: flex; align-items: center; margin-bottom: 36px; gap: 24px; position: relative; }
.why-item.left { flex-direction: row; justify-content: flex-end; padding-right: calc(50% + 32px); }
.why-item.right { flex-direction: row; padding-left: calc(50% + 32px); }
.why-dot {
  width: 14px; height: 14px; min-width: 14px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.25);
  position: absolute; left: 50%; transform: translateX(-50%);
  transition: var(--transition); z-index: 2;
}
.why-item:hover .why-dot { transform: translateX(-50%) scale(1.4); }
.why-content { padding: 20px; max-width: 340px; display: flex; align-items: flex-start; gap: 14px; }
.why-icon {
  width: 42px; height: 42px; min-width: 42px; border-radius: 12px;
  background: rgba(249,115,22,0.08);
  border: 1.5px solid rgba(249,115,22,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem; transition: var(--transition);
}
.why-content:hover .why-icon { background: var(--accent); color: #fff; }
.why-content h5 { font-size: 0.92rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.why-content p { font-size: 0.78rem; color: var(--text-secondary); margin: 0; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   TARIFF
   ══════════════════════════════════════════════════════════ */
.section-tariff { padding: 100px 0; background: var(--bg2); }
[data-theme="dark"] .section-tariff { background: #111827; }
.tariff-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.tariff-card { overflow: hidden; padding: 0; }
.tariff-card-header {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 26px 18px;
  background: var(--primary);
  border-radius: var(--radius) var(--radius) 0 0;
}
.tariff-header-rt { background: linear-gradient(135deg,#1e3a5f,var(--secondary)); }
.tariff-header-icon {
  width: 46px; height: 46px; min-width: 46px; border-radius: 12px;
  background: rgba(249,115,22,0.15); border: 1.5px solid rgba(249,115,22,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.1rem;
}
.rt-icon { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); color: #fff; }
.tariff-card-header h3 { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 3px; }
.tariff-card-header p { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin: 0; }
.tariff-table-wrap { padding: 0; }
.tariff-table { width: 100%; border-collapse: collapse; }
.tariff-table thead tr { background: rgba(15,23,42,0.85); }
[data-theme="dark"] .tariff-table thead tr { background: rgba(255,255,255,0.04); }
.tariff-table thead th {
  padding: 12px 18px; font-size: 0.72rem; font-weight: 700;
  color: rgba(255,255,255,0.8); text-align: left;
  letter-spacing: 0.6px; text-transform: uppercase; white-space: nowrap;
}
.tariff-table thead th i { color: var(--accent); }
.tariff-table tbody tr { border-bottom: 1px solid rgba(15,23,42,0.06); transition: var(--transition); }
[data-theme="dark"] .tariff-table tbody tr { border-bottom-color: rgba(255,255,255,0.06); }
.tariff-table tbody tr:last-child { border-bottom: none; }
.tariff-table tbody tr:hover { background: rgba(249,115,22,0.04); }
.tariff-table tbody tr.tariff-alt { background: rgba(15,23,42,0.025); }
[data-theme="dark"] .tariff-table tbody tr.tariff-alt { background: rgba(255,255,255,0.025); }
.tariff-table tbody td { padding: 13px 18px; font-size: 0.85rem; color: var(--text-secondary); vertical-align: middle; }
.tariff-vehicle-name { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--text-primary); }
.tariff-veh-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(249,115,22,0.08); display: flex; align-items: center;
  justify-content: center; color: var(--accent); font-size: 0.85rem; flex-shrink: 0;
}
.tariff-rate { font-size: 1rem; font-weight: 800; color: var(--accent); display: inline-flex; align-items: baseline; gap: 1px; }
.tariff-rate span { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); }
.tariff-allowance {
  display: inline-block; background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15); color: var(--secondary);
  font-size: 0.78rem; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-pill);
}
.tariff-note {
  padding: 11px 18px 16px; font-size: 0.75rem; color: var(--text-muted);
  display: flex; align-items: flex-start; gap: 6px;
  border-top: 1px solid rgba(15,23,42,0.06); line-height: 1.5;
}
[data-theme="dark"] .tariff-note { border-top-color: rgba(255,255,255,0.06); }
.tariff-note i { color: var(--secondary); margin-top: 2px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   ROUTES
   ══════════════════════════════════════════════════════════ */
.section-routes { padding: 100px 0; background: var(--bg); position: relative; overflow: hidden; }
.routes-map-bg { position: absolute; inset: 0; pointer-events: none; }
.map-svg-bg { width: 100%; height: 100%; }
.routes-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 20px; }
.route-card { padding: 22px; }
.route-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.route-tag { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); }
.route-duration { font-size: 0.72rem; font-weight: 600; color: var(--secondary); display: flex; align-items: center; gap: 4px; }
.route-cities { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.city { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); }
.city.from { color: var(--accent); }
.route-arrow { flex: 1; display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: 1.1rem; }
.route-price { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 16px; }
.route-price strong { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.btn-route {
  display: block; width: 100%; text-align: center;
  background: transparent; border: 1.5px solid var(--accent);
  color: var(--accent); font-weight: 700; font-size: 0.82rem;
  padding: 9px; border-radius: var(--radius-pill); transition: var(--transition);
}
.btn-route:hover { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); transform: translateY(-2px); }
.map-path-anim { stroke-dasharray: 800; animation: drawPath 6s ease-in-out infinite alternate; }
.map-path-anim2 { stroke-dasharray: 800; animation: drawPath 8s ease-in-out infinite alternate-reverse; }
@keyframes drawPath { from { stroke-dashoffset: 800; } to { stroke-dashoffset: 0; } }

/* ══════════════════════════════════════════════════════════
   BOOKING PROCESS
   ══════════════════════════════════════════════════════════ */
.section-process { padding: 100px 0; background: var(--bg2); }
[data-theme="dark"] .section-process { background: #0f172a; }
.process-timeline { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; position: relative; padding: 20px 0; }
.process-timeline::before { content: ''; position: absolute; left: 22px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg,var(--accent),var(--secondary)); border-radius: 2px; }
.process-step { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 28px; position: relative; }
.process-step.last { margin-bottom: 0; }
.process-icon-wrap { flex-shrink: 0; }
.process-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--card-bg); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.95rem;
  box-shadow: 0 0 0 6px var(--bg), 0 0 0 8px rgba(249,115,22,0.1);
  transition: var(--transition); position: relative; z-index: 2;
}
.process-icon.final { background: var(--accent); color: #fff; }
.process-step:hover .process-icon { background: var(--accent); color: #fff; transform: scale(1.1); }
.process-content { padding: 14px 18px; flex: 1; }
.step-num { font-size: 0.68rem; font-weight: 800; letter-spacing: 2px; color: var(--accent); text-transform: uppercase; }
.process-content h5 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin: 4px 0; }
.process-content p { font-size: 0.8rem; color: var(--text-secondary); margin: 0; line-height: 1.6; }
.process-connector { display: none; }

/* ══════════════════════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════════════════════ */
.section-reviews { padding: 100px 0; background: var(--bg); }
.reviews-swiper-wrap { padding: 20px 0 48px; }
.review-card { padding: 28px; }
.review-stars { color: var(--accent); font-size: 0.88rem; margin-bottom: 14px; display: flex; gap: 2px; }
.review-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-text::before { content: '"'; font-size: 1.2rem; color: var(--accent); font-style: normal; }
.review-text::after  { content: '"'; font-size: 1.2rem; color: var(--accent); font-style: normal; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.review-author strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-primary); }
.review-author span { font-size: 0.75rem; color: var(--text-muted); }
.swiper-pagination-bullet { background: var(--text-muted); opacity: 0.5; }
.swiper-pagination-bullet-active { background: var(--accent) !important; opacity: 1; width: 20px; border-radius: 4px; }
.fleet-prev,.fleet-next {
  width: 44px !important; height: 44px !important;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 50%; color: var(--text-primary) !important; transition: var(--transition);
}
.fleet-prev::after,.fleet-next::after { font-size: 0.75rem !important; font-weight: 900 !important; }
.fleet-prev:hover,.fleet-next:hover { background: var(--accent); color: #fff !important; }

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.section-faq { padding: 100px 0; background: var(--bg2); }
[data-theme="dark"] .section-faq { background: #111827; }
.faq-item { margin-bottom: 12px; overflow: hidden; border-radius: var(--radius) !important; }
.faq-btn {
  font-family: var(--font) !important; font-size: 0.9rem !important; font-weight: 600 !important;
  color: var(--text-primary) !important; background: transparent !important;
  padding: 17px 20px !important; display: flex !important; align-items: center; gap: 12px;
  box-shadow: none !important; border: none;
}
.faq-btn:focus { box-shadow: none !important; }
.faq-btn:not(.collapsed) { color: var(--accent) !important; }
.faq-btn::after { color: var(--accent) !important; }
.faq-icon { color: var(--accent); font-size: 0.95rem; min-width: 20px; }
.faq-body { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.75; padding: 0 20px 17px 52px; }

/* ══════════════════════════════════════════════════════════
   WHATSAPP BOOKING SECTION
   ══════════════════════════════════════════════════════════ */
.section-wa-booking { padding: 100px 0; background: var(--bg); position: relative; overflow: hidden; }
.section-wa-booking::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg,rgba(249,115,22,0.02) 0,rgba(249,115,22,0.02) 1px,transparent 1px,transparent 60px);
  pointer-events: none;
}
.wa-booking-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.wa-booking-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.25);
  color: #16A34A; font-size: 0.73rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; padding: 6px 16px;
  border-radius: var(--radius-pill); margin-bottom: 18px;
}
[data-theme="dark"] .wa-booking-eyebrow { color: #25D366; background: rgba(37,211,102,0.08); }
.wa-booking-eyebrow i { font-size: 1rem; }
.wa-booking-left h2 { font-family: var(--font-heading); font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 800; line-height: 1.18; color: var(--text-primary); margin-bottom: 14px; }
.wa-booking-left p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 24px; max-width: 420px; }
.wa-booking-perks { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.wa-booking-perks li { font-size: 0.88rem; color: var(--text-secondary); display: flex; align-items: center; gap: 9px; }
.wa-booking-perks li i { color: #10B981; font-size: 0.88rem; flex-shrink: 0; }
.wa-booking-contact { display: flex; gap: 10px; flex-wrap: wrap; }
.wa-contact-pill {
  display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 700;
  padding: 9px 18px; border-radius: var(--radius-pill); border: 1.5px solid rgba(15,23,42,0.12);
  color: var(--text-primary); background: var(--card-bg); backdrop-filter: blur(8px); transition: var(--transition);
}
[data-theme="dark"] .wa-contact-pill { border-color: rgba(255,255,255,0.1); }
.wa-contact-pill:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.wa-contact-pill.wa-green { background: #25D366; border-color: #25D366; color: #fff; }
.wa-contact-pill.wa-green:hover { background: #128C7E; border-color: #128C7E; color: #fff; box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.wa-form-card { padding: 34px 30px; }

/* WA form internals */
.wb-input-icon-wrap { position: relative; display: flex; align-items: center; }
.wb-input-prefix { position: absolute; left: 0; top: 0; bottom: 0; display: flex; align-items: center; justify-content: center; width: 44px; font-size: 0.82rem; font-weight: 700; color: var(--text-secondary); border-right: 1px solid rgba(0,0,0,0.08); pointer-events: none; z-index: 1; }
[data-theme="dark"] .wb-input-prefix { border-right-color: rgba(255,255,255,0.08); }
.wb-has-prefix { padding-left: 52px !important; }
.wb-loc-pin { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 0.95rem; pointer-events: none; transition: var(--transition); }
.wb-loc-pin.pickup-pin { color: #10B981; }
.wb-loc-pin.drop-pin { color: #EF4444; }
.wb-location-input { padding-right: 34px !important; }
.wb-char-counter { display: block; text-align: right; font-size: 0.68rem; color: var(--text-muted); margin-top: 3px; font-weight: 500; }
.wb-char-counter.warn  { color: #F59E0B; }
.wb-char-counter.limit { color: #EF4444; font-weight: 700; }
.wb-mobile-status { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 0.9rem; pointer-events: none; }
.wb-mobile-status.valid   { color: #10B981; }
.wb-mobile-status.invalid { color: #EF4444; }
#wbMobile { padding-right: 34px !important; }

/* Vehicle picker */
.wb-vehicle-hidden { display: none !important; }
.wb-vehicle-picker { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 8px; }
.wb-vehicle-picker--3 { grid-template-columns: repeat(3,1fr); }
.wb-vehicle-opt {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 6px 10px; background: var(--bg); border: 1.5px solid rgba(15,23,42,0.08);
  border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); text-align: center; position: relative; overflow: hidden;
}
[data-theme="dark"] .wb-vehicle-opt { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.wb-vehicle-opt:hover { border-color: var(--accent); background: rgba(249,115,22,0.05); transform: translateY(-2px); box-shadow: var(--shadow-accent); }
.wb-vehicle-opt.selected { border-color: var(--accent); background: rgba(249,115,22,0.08); box-shadow: 0 0 0 3px rgba(249,115,22,0.15); }
.wb-vehicle-opt.selected::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 5px; right: 6px; font-size: 0.55rem; color: #fff; background: var(--accent); width: 14px; height: 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; line-height: 14px; text-align: center; }
.wbv-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(249,115,22,0.08); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--accent); transition: var(--transition); }
.wb-vehicle-opt.selected .wbv-icon { background: var(--accent); color: #fff; }
.wbv-name { font-size: 0.78rem; font-weight: 700; color: var(--text-primary); line-height: 1.1; }
.wbv-sub  { font-size: 0.65rem; color: var(--text-muted); line-height: 1; }
.wbv-price { font-size: 0.7rem; font-weight: 700; color: var(--accent); background: rgba(249,115,22,0.08); padding: 2px 7px; border-radius: 20px; margin-top: 2px; }
.wbv-total { font-size: 0.78rem; font-weight: 800; color: #fff; background: var(--accent); padding: 3px 8px; border-radius: 20px; margin-top: 4px; display: none; animation: wbvTotalPop 0.3s cubic-bezier(.2,.8,.4,1.2) both; }
@keyframes wbvTotalPop { from { transform: scale(0.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.wb-vehicle-opt.selected .wbv-total { background: #fff; color: var(--accent); }
.wb-vehicle-picker.wb-picker-error { outline: 2px solid #EF4444; border-radius: var(--radius-sm); }

/* Trip type toggle */
.wb-trip-toggle { display: flex; gap: 10px; margin-top: 8px; }
.wb-trip-opt { flex: 1; padding: 10px 14px; border: 2px solid var(--card-border); border-radius: var(--radius-sm); background: var(--card-bg); color: var(--text-secondary); font-size: 0.84rem; font-weight: 600; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 6px; font-family: var(--font); }
.wb-trip-opt:hover { border-color: var(--accent); color: var(--accent); }
.wb-trip-opt.selected { border-color: var(--accent); background: rgba(249,115,22,0.08); color: var(--accent); }

/* City select dropdown */
.wb-select-wrap { position: relative; }
.wb-select-wrap .form-input-custom { appearance: none; -webkit-appearance: none; padding-right: 36px; cursor: pointer; }
.wb-select-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--text-muted); font-size: 0.75rem; }

/* City autocomplete — Nominatim powered */
.wb-autocomplete-wrap { position: relative; }
.wb-autocomplete-input { padding-right: 36px !important; }
.wb-ac-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; font-size: 0.82rem; }
.pickup-ac { color: var(--accent); }
.drop-ac   { color: #2563EB; }
.wb-suggestions {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--card-bg); border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm); box-shadow: 0 10px 32px rgba(0,0,0,0.14);
  list-style: none; padding: 6px 0; margin: 0; z-index: 500;
  max-height: 260px; overflow-y: auto; display: none;
}
.wb-suggestions li {
  padding: 9px 14px; font-size: 0.83rem; color: var(--text-primary);
  cursor: pointer; transition: background 0.12s;
  display: flex; align-items: flex-start; gap: 10px;
}
.wb-sug-icon { color: var(--text-muted); font-size: 0.78rem; margin-top: 2px; flex-shrink: 0; width: 14px; text-align: center; }
.wb-sug-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.wb-sug-name { font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wb-sug-name strong { color: var(--accent); font-weight: 700; }
.wb-sug-sub  { font-size: 0.7rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wb-suggestions li:hover,
.wb-suggestions li.active { background: rgba(249,115,22,0.07); }
.wb-suggestions li:hover .wb-sug-icon,
.wb-suggestions li.active .wb-sug-icon { color: var(--accent); }
.wb-sug-loading { color: var(--text-muted) !important; font-size: 0.78rem !important; cursor: default !important; justify-content: center !important; padding: 12px 14px !important; gap: 8px !important; }
.wb-sug-loading i { color: var(--accent); }

/* Location Autocomplete (location-service.js) */
.loc-autocomplete-wrap { position: relative; }
.loc-ac-input { padding-left: 36px !important; }
.loc-ac-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; font-size: 0.82rem; }
.loc-ac-icon.pickup-ac { color: var(--accent); }
.loc-ac-icon.drop-ac   { color: #2563EB; }
.loc-suggestions {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--card-bg); border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm); box-shadow: 0 12px 36px rgba(0,0,0,0.15);
  list-style: none; padding: 6px 0; margin: 0; z-index: 500;
  max-height: 280px; overflow-y: auto; display: none;
}
.loc-sug-item {
  padding: 10px 14px; font-size: 0.83rem; color: var(--text-primary);
  cursor: pointer; transition: background 0.12s;
  display: flex; align-items: flex-start; gap: 10px;
}
.loc-sug-icon { color: var(--text-muted); font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; width: 15px; text-align: center; }
.loc-sug-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.loc-sug-name { font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.loc-sug-name strong { color: var(--accent); font-weight: 700; }
.loc-sug-sub  { font-size: 0.68rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.loc-sug-item:hover, .loc-sug-item.active { background: rgba(249,115,22,0.07); }
.loc-sug-item:hover .loc-sug-icon, .loc-sug-item.active .loc-sug-icon { color: var(--accent); }
.loc-sug-state { padding: 12px 14px; font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; cursor: default; }
.loc-sug-state i { color: var(--accent); }
.loc-sug-empty i { color: var(--text-muted); }
.loc-sug-err   { color: #EF4444 !important; }
.loc-sug-err i { color: #EF4444 !important; }
.loc-error { border-color: #EF4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,.15) !important; }
.loc-err-msg { font-size: 0.72rem; color: #EF4444; margin-top: 3px; display: block; }

/* Distance bar */
.loc-distance-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius-sm); padding: 8px 14px; margin-bottom: 14px;
  font-size: 0.8rem; color: var(--text-secondary); animation: locBarIn 0.3s ease both;
}
@keyframes locBarIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }
.loc-distance-bar strong { color: var(--text-primary); }
.loc-distance-bar i { color: #2563EB; margin-right: 4px; }
.loc-dist-sep { color: var(--text-muted); }
.loc-dist-src { font-size: 0.68rem; color: var(--text-muted); margin-left: auto; }

/* Fare card */
.wb-fare-card { background: linear-gradient(135deg,rgba(249,115,22,0.06),rgba(37,99,235,0.04)); border: 1.5px solid rgba(249,115,22,0.25); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 16px; transition: var(--transition); }
.wb-fare-card.wb-fare-in { animation: wbFareSlide 0.4s cubic-bezier(.2,.8,.4,1.1) both; }
@keyframes wbFareSlide { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
.wb-fare-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.wb-fare-title { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); display: flex; align-items: center; gap: 6px; }
.wb-fare-title i { color: var(--accent); }
.wb-fare-badge { font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; background: rgba(249,115,22,0.12); color: var(--accent); }
.wb-fare-badge.rt { background: rgba(37,99,235,0.1); color: #2563EB; }
.wb-fare-route { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.wb-fare-city { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); display: flex; align-items: center; gap: 5px; }
.wb-fare-city i { color: var(--accent); font-size: 0.75rem; }
.wb-fare-arrow { color: var(--text-muted); font-size: 0.75rem; display: flex; align-items: center; }
.wb-fare-dist { font-size: 0.7rem; color: var(--text-muted); margin-left: auto; background: var(--card-bg); padding: 2px 8px; border-radius: 20px; border: 1px solid var(--card-border); }
.wb-fare-breakdown { border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); padding: 10px 0; margin-bottom: 12px; display: flex; flex-direction: column; gap: 6px; }
.wb-fare-row { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-secondary); }
.wb-fare-row span:last-child { font-weight: 600; color: var(--text-primary); }
.wb-fare-total { display: flex; justify-content: space-between; align-items: center; }
.wb-fare-total span:first-child { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); }
.wb-fare-amount { font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.wb-fare-note { font-size: 0.7rem; color: var(--text-muted); margin: 10px 0 0; display: flex; align-items: flex-start; gap: 5px; }
.wb-fare-note i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }

/* Fare exclusions */
.wb-fare-exclusions { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--card-border); }
.wb-fare-excl-title { font-size: 0.68rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 6px; }
.wb-fare-excl-list { display: flex; flex-wrap: wrap; gap: 6px; }
.wb-fare-excl-list span { display: inline-flex; align-items: center; gap: 4px; font-size: 0.68rem; font-weight: 600; color: #EF4444; background: rgba(239,68,68,0.07); border: 1px solid rgba(239,68,68,0.18); padding: 3px 9px; border-radius: 20px; white-space: nowrap; }
.wb-fare-excl-list span i { font-size: 0.6rem; }

/* WA Submit button */
.btn-wa-submit { background: linear-gradient(135deg,#25D366,#128C7E) !important; box-shadow: 0 6px 24px rgba(37,211,102,0.3) !important; font-size: 1rem; }
.btn-wa-submit:hover { box-shadow: 0 12px 32px rgba(37,211,102,0.45) !important; transform: translateY(-2px); }
.btn-wa-submit:disabled { opacity: 0.75; cursor: not-allowed; transform: none !important; }
.wbBtn-inner { display: flex; align-items: center; gap: 8px; width: 100%; justify-content: center; }
.wbBtn-icon { font-size: 1.1rem; }
.wbBtn-text { flex: 1; text-align: center; }
.wbBtn-arrow { font-size: 0.8rem; opacity: 0.75; transition: var(--transition); }
.btn-wa-submit:not(:disabled):hover .wbBtn-arrow { opacity: 1; transform: translateX(4px); }

/* Confirmation overlay */
.wb-confirm-overlay { position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.6); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.35s ease; }
.wb-confirm-overlay[hidden] { display: none !important; }
.wb-confirm-overlay.wb-overlay-in { display: flex; opacity: 1; }
.wb-confirm-box { width: min(460px,92vw); padding: 44px 36px 36px; text-align: center; animation: wbBoxIn 0.4s cubic-bezier(.2,.8,.4,1.2) both; }
@keyframes wbBoxIn { from { transform: scale(0.82) translateY(24px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.wb-confirm-anim { position: relative; width: 84px; height: 84px; margin: 0 auto 20px; }
.wb-confirm-ring { position: absolute; inset: 0; border-radius: 50%; border: 3px solid rgba(37,211,102,0.2); border-top-color: #25D366; animation: wbRingSpin 0.7s ease forwards; }
@keyframes wbRingSpin { from { transform: rotate(0deg); opacity: 1; } 80% { transform: rotate(360deg); opacity: 1; } 100% { transform: rotate(360deg); opacity: 0; } }
.wb-confirm-check { position: absolute; inset: 0; border-radius: 50%; background: linear-gradient(135deg,#25D366,#128C7E); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff; transform: scale(0); opacity: 0; animation: wbCheckPop 0.45s cubic-bezier(.2,.8,.4,1.3) 0.65s forwards; box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
@keyframes wbCheckPop { to { transform: scale(1); opacity: 1; } }
.wb-confirm-box h4 { font-size: 1.25rem; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; opacity: 0; animation: wbFadeUp 0.4s ease 1.05s forwards; }
.wb-confirm-box p { font-size: 0.86rem; color: var(--text-secondary); margin-bottom: 0; opacity: 0; animation: wbFadeUp 0.4s ease 1.15s forwards; }
@keyframes wbFadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.wb-confirm-meta { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 16px 0; opacity: 0; animation: wbFadeUp 0.4s ease 1.25s forwards; }
.wb-confirm-meta span { display: inline-flex; align-items: center; gap: 5px; background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.2); color: var(--text-primary); font-size: 0.76rem; font-weight: 600; padding: 5px 12px; border-radius: var(--radius-pill); }
.wb-confirm-meta i { color: #25D366; }
.wb-confirm-redirect { font-size: 0.78rem !important; color: var(--text-muted) !important; margin-top: 12px !important; animation: wbFadeUp 0.4s ease 1.4s forwards !important; }
.wb-dots span { animation: wbDotBlink 1.2s ease-in-out infinite; }
.wb-dots span:nth-child(2) { animation-delay: 0.2s; }
.wb-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes wbDotBlink { 0%,80%,100% { opacity: 0; } 40% { opacity: 1; } }

/* ══════════════════════════════════════════════════════════
   CTA
   ══════════════════════════════════════════════════════════ */
.section-cta { padding: 100px 0; background: var(--primary); position: relative; overflow: hidden; text-align: center; }
.cta-bg-anim { position: absolute; inset: 0; pointer-events: none; }
.cta-circle { position: absolute; border-radius: 50%; }
.cta-circle.c1 { width: 600px; height: 600px; top: -200px; left: -200px; background: radial-gradient(circle,rgba(249,115,22,0.1),transparent 65%); }
.cta-circle.c2 { width: 500px; height: 500px; bottom: -200px; right: -100px; background: radial-gradient(circle,rgba(37,99,235,0.1),transparent 65%); }
.cta-eyebrow { display: inline-flex; align-items: center; gap: 6px; background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.3); color: var(--accent); font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; padding: 7px 16px; border-radius: var(--radius-pill); margin-bottom: 20px; text-transform: uppercase; }
.section-cta h2 { font-family: var(--font-heading); font-size: clamp(2rem,5vw,3.4rem); font-weight: 900; color: #fff; margin-bottom: 16px; }
.section-cta p { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary { background: var(--accent); color: #fff; font-weight: 700; font-size: 1rem; padding: 14px 32px; border-radius: var(--radius-pill); box-shadow: var(--shadow-accent); transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(249,115,22,0.5); background: var(--accent-dark); color: #fff; }
.btn-cta-whatsapp { background: #25D366; color: #fff; font-weight: 700; font-size: 1rem; padding: 14px 32px; border-radius: var(--radius-pill); box-shadow: 0 8px 28px rgba(37,211,102,0.3); transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.btn-cta-whatsapp:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 14px 36px rgba(37,211,102,0.5); }

/* ══════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════ */
.section-contact { padding: 100px 0; background: var(--bg); }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; }
.contact-card-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: rgba(249,115,22,0.08); border: 1.5px solid rgba(249,115,22,0.15); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.05rem; }
.contact-card h6 { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-card a { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-primary); transition: var(--transition); }
.contact-card a:hover { color: var(--accent); }
.contact-card p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; line-height: 1.6; }
.contact-map { overflow: hidden; padding: 0 !important; }
.contact-form-wrap { padding: 34px 30px; }
.contact-form-wrap h4 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 22px; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.main-footer { background: var(--primary); color: rgba(255,255,255,0.65); }
.footer-top { padding: 72px 0 48px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.45); margin: 16px 0 24px; }
.footer-logo { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; color: #fff; margin-bottom: 4px; }
.footer-logo .brand-icon { background: rgba(249,115,22,0.15); color: var(--accent); }
.footer-logo .brand-accent { color: var(--accent); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 0.82rem; transition: var(--transition); }
.footer-socials a:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-3px); }
.footer-heading { font-size: 0.78rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.45); transition: var(--transition); display: inline-flex; align-items: center; gap: 4px; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-nl-text { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.footer-nl-form { display: flex; gap: 6px; margin-bottom: 16px; }
.footer-nl-input { flex: 1; padding: 9px 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); color: #fff; font-size: 0.82rem; font-family: var(--font); outline: none; transition: var(--transition); }
.footer-nl-input:focus { border-color: var(--accent); background: rgba(249,115,22,0.05); }
.footer-nl-input::placeholder { color: rgba(255,255,255,0.28); }
.footer-nl-btn { width: 38px; height: 38px; background: var(--accent); color: #fff; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: var(--transition); flex-shrink: 0; border: none; cursor: pointer; }
.footer-nl-btn:hover { transform: scale(1.1); background: var(--accent-dark); }
.footer-contact-quick { display: flex; flex-direction: column; gap: 7px; }
.footer-contact-quick a { font-size: 0.8rem; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.footer-contact-quick a:hover { color: var(--accent); }
.footer-contact-quick i { color: var(--accent); width: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom-inner span { font-size: 0.78rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-legal a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════════
   FLOATING ELEMENTS
   ══════════════════════════════════════════════════════════ */
.float-whatsapp,.float-call { position: fixed; z-index: 999; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: var(--shadow-lg); transition: var(--transition); text-decoration: none; cursor: pointer; }
.float-tooltip { position: absolute; right: 60px; background: var(--primary); color: #fff; font-size: 0.72rem; font-weight: 600; padding: 5px 10px; border-radius: 6px; white-space: nowrap; pointer-events: none; opacity: 0; transform: translateX(8px); transition: var(--transition); font-family: var(--font); }
.float-whatsapp:hover .float-tooltip,.float-call:hover .float-tooltip { opacity: 1; transform: translateX(0); }
.float-whatsapp { bottom: 120px; right: 20px; background: #25D366; color: #fff; animation: pulseGlow 2.5s ease-in-out infinite; }
.float-whatsapp:hover { background: #128C7E; transform: scale(1.1); color: #fff; }
.float-call { bottom: 60px; right: 20px; background: var(--accent); color: #fff; }
.float-call:hover { transform: scale(1.1); background: var(--accent-dark); }
.float-chat { bottom: 56px; right: 20px; background: var(--secondary); color: #fff; display: none !important; }
.float-chat:hover { transform: scale(1.1); background: var(--accent); }
.back-to-top { position: fixed; bottom: 56px; left: 20px; z-index: 999; width: 44px; height: 44px; border-radius: 50%; background: var(--card-bg); border: 1px solid var(--card-border); color: var(--text-primary); font-size: 0.88rem; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); backdrop-filter: blur(8px); transition: var(--transition); opacity: 0; pointer-events: none; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.sticky-book-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: var(--primary); border-top: 2px solid var(--accent); padding: 12px 20px; transform: translateY(100%); transition: var(--transition); }
.sticky-book-bar.show { transform: translateY(0); }
.sticky-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.sticky-bar-inner span { color: rgba(255,255,255,0.9); font-size: 0.88rem; font-weight: 600; }
.btn-sticky-book { background: var(--accent); color: #fff; font-weight: 700; font-size: 0.85rem; padding: 8px 22px; border-radius: var(--radius-pill); transition: var(--transition); border: none; cursor: pointer; }
.btn-sticky-book:hover { background: var(--accent-dark); color: #fff; }
.toast-notification { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px); z-index: 9999; background: var(--primary); color: #fff; padding: 12px 24px; border-radius: var(--radius-pill); display: flex; align-items: center; gap: 10px; font-size: 0.86rem; font-weight: 600; box-shadow: var(--shadow-lg); transition: var(--transition); opacity: 0; pointer-events: none; border-left: 3px solid #10B981; }
.toast-notification.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-notification i { color: #10B981; font-size: 1rem; }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════ */
@keyframes floatPin { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(8deg); } }
@keyframes driveCar { 0% { left: -8%; opacity: 0; } 5% { opacity: 0.25; } 90% { opacity: 0.25; } 100% { left: 108%; opacity: 0; } }
@keyframes pulseGlow { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); } 50% { box-shadow: 0 0 0 10px rgba(37,211,102,0); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.glass-card { position: relative; }
.glass-card::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg,transparent,rgba(255,255,255,0.04),transparent); transform: skewX(-20deg); transition: left 0.6s ease; pointer-events: none; }
.glass-card:hover::after { left: 160%; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
img:not([src]),img[src=""] { background: linear-gradient(90deg,#f0f0f0 25%,#e0e0e0 50%,#f0f0f0 75%); }
[data-theme="dark"] img:not([src]),[data-theme="dark"] img[src=""] { background: linear-gradient(90deg,#1e293b 25%,#334155 50%,#1e293b 75%); }

/* ══════════════════════════════════════════════════════════
   GOOGLE FONTS IMPORT
   ══════════════════════════════════════════════════════════ */
/* Add to <head> in HTML: Inter + Space Grotesk */

/* ── Hero full-width (no booking card) ─────────────────── */
.hero-container--full {
  grid-template-columns: 1fr;
  max-width: 900px;
  text-align: center;
}
.hero-left--full {
  align-items: center;
  padding-right: 0;
}
.hero-left--full .hero-sub { margin-left: auto; margin-right: auto; }
.hero-left--full .hero-btns { justify-content: center; }
.hero-left--full .hero-trust { justify-content: center; }
.hero-left--full .hero-badge { margin-left: auto; margin-right: auto; }
.hero-left--full .hero-heading { font-size: clamp(2.6rem, 6vw, 4.5rem); }
