/* ===== SHREE KULDEVI TRAVELS — PREMIUM DESIGN SYSTEM ===== */

:root {
  /* Light Mode — Premium Travel Brand */
  --color-primary: #0B1F3A;
  --color-secondary: #122B49;
  --color-accent: #F59E0B;
  --color-accent-hover: #D97706;
  --color-accent-soft: rgba(245, 158, 11, 0.12);
  --color-accent-glow: rgba(245, 158, 11, 0.35);
  --color-bg: #F8FAFC;
  --color-card: #FFFFFF;
  --color-text: #111827;
  --color-text-secondary: #6B7280;
  --color-border: rgba(11, 31, 58, 0.08);
  --color-border-hover: rgba(245, 158, 11, 0.25);
  --color-surface: #F1F5F9;
  --color-glass: rgba(255, 255, 255, 0.78);
  --color-input-border: #E2E8F0;
  --color-input-bg: #FFFFFF;
  --color-on-accent: #0B1F3A;
  --heading-color: #0B1F3A;
  --card-heading: #0B1F3A;
  --nav-bg: #0B1F3A;
  --nav-glass: rgba(11, 31, 58, 0.92);
  --nav-dropdown-bg: #122B49;
  --nav-link: rgba(255, 255, 255, 0.9);
  --footer-bg-start: #0B1F3A;
  --footer-bg-end: #061220;
  --hero-overlay: linear-gradient(115deg, rgba(11,31,58,0.94) 0%, rgba(18,43,73,0.82) 50%, rgba(11,31,58,0.7) 100%);
  --vehicle-media-bg: linear-gradient(160deg, #F1F5F9, #E2E8F0);
  --vehicle-features-bg: rgba(248, 250, 252, 0.92);
  --shadow-color: 11, 31, 58;
  --nav-border: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.55);
  --cta-gradient: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --text-on-dark: #FFFFFF;
  --footer-text: rgba(255, 255, 255, 0.72);
  --footer-link: rgba(255, 255, 255, 0.65);

  /* Aliases */
  --primary: var(--color-primary);
  --secondary: var(--color-secondary);
  --accent: var(--color-accent);
  --accent-hover: var(--color-accent-hover);
  --accent-soft: var(--color-accent-soft);
  --accent-glow: var(--color-accent-glow);
  --bg: var(--color-bg);
  --text: var(--color-text);
  --gray: var(--color-text-secondary);
  --white: var(--color-card);
  --light: var(--color-surface);
  --glass: var(--color-glass);

  --radius: 16px;
  --radius-lg: 24px;
  --card-radius: 24px;
  --shadow: 0 10px 40px rgba(var(--shadow-color), 0.08);
  --shadow-lg: 0 24px 60px rgba(var(--shadow-color), 0.14);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --theme-transition: background-color 0.45s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.45s ease;
  --font-heading: 'Share Tech', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Share Tech', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --bs-body-font-family: var(--font-body);
  --bs-font-sans-serif: var(--font-body);

  /* 3D button depth */
  --btn-edge-accent: #b45309;
  --btn-edge-accent-deep: #92400e;
  --btn-edge-wa: #128c41;
  --btn-edge-wa-deep: #0d6b32;
  --btn-edge-dark: #061220;
  --btn-edge-dark-deep: #020810;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  color-scheme: light;
  font-family: var(--font-body);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html.theme-switching *,
html.theme-switching *::before,
html.theme-switching *::after {
  transition: background-color 0.45s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.45s ease !important;
}
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body) !important;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  transition: var(--theme-transition);
}

button, input, select, textarea, .btn {
  font-family: inherit;
  touch-action: manipulation;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.page-hero-title {
  font-family: var(--font-heading);
  color: var(--heading-color);
  transition: color 0.35s ease;
}
.text-accent { color: var(--color-accent) !important; }
.bg-premium { background: var(--color-bg); transition: var(--theme-transition); }
.bg-white-section { background: var(--color-card); transition: var(--theme-transition); }
.bg-light { background: var(--color-surface) !important; transition: var(--theme-transition); }

.site-main .form-control,
.site-main .form-select,
.site-main textarea.form-control {
  background: var(--color-input-bg);
  border-color: var(--color-input-border);
  color: var(--color-text);
  transition: var(--theme-transition);
}
.site-main .form-control:focus,
.site-main .form-select:focus,
.site-main textarea.form-control:focus {
  background: var(--color-input-bg);
  border-color: var(--accent);
  color: var(--color-text);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.site-main .form-control::placeholder,
.site-main textarea.form-control::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.85;
}

/* ===== BUTTONS — 3D GRAPHIC STYLE ===== */
.btn-accent,
.btn-call,
.btn-wa-nav,
.btn-hero-call,
.btn-hero-wa,
.btn-hero-seats,
.hero-taxi-submit,
.vehicle-btn,
.btn-cta-call,
.btn-cta-wa,
.btn-cta-book,
.btn-quote-send,
.btn-whatsapp,
.submit-btn,
.btn-premium-outline,
.seat-filter-card__btn,
.seat-filter-card__btn--call,
.site-main .btn-dark,
.site-main .btn-outline-dark,
.site-main .btn.btn-accent,
.site-main .btn.btn-dark,
.site-main .btn.btn-outline-dark,
.site-main .btn-primary,
.btn-dark,
.btn-white {
  position: relative;
  border: none;
  font-weight: 700;
  transition: transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.2s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  transform: translateY(0);
  will-change: transform;
}

.btn-accent,
.btn-call,
.btn-hero-call,
.hero-taxi-submit,
.btn-cta-call,
.vehicle-btn-call,
.btn-quote-send,
.seat-filter-card__btn--call,
.site-main .btn.btn-accent,
.site-main .btn-accent,
.site-main .btn-primary {
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 48%, #d97706 100%) !important;
  color: var(--color-on-accent) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.42),
    inset 0 -2px 0 rgba(0, 0, 0, 0.08),
    0 4px 0 var(--btn-edge-accent),
    0 8px 18px rgba(180, 83, 9, 0.38);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-accent:hover, .btn-accent:focus,
.btn-call:hover,
.btn-hero-call:hover,
.hero-taxi-submit:hover,
.btn-cta-call:hover,
.vehicle-btn-call:hover,
.btn-quote-send:hover,
.seat-filter-card__btn--call:hover,
.site-main .btn.btn-accent:hover,
.site-main .btn-accent:hover,
.site-main .btn-primary:hover {
  background: linear-gradient(180deg, #fcd34d 0%, #f59e0b 48%, #b45309 100%) !important;
  color: var(--color-on-accent) !important;
  transform: translateY(-3px);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    0 6px 0 var(--btn-edge-accent),
    0 14px 28px rgba(180, 83, 9, 0.45);
}

.btn-accent:active,
.btn-call:active,
.btn-hero-call:active,
.hero-taxi-submit:active,
.btn-cta-call:active,
.vehicle-btn-call:active,
.btn-quote-send:active,
.seat-filter-card__btn--call:active,
.site-main .btn.btn-accent:active,
.site-main .btn-accent:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.18),
    0 1px 0 var(--btn-edge-accent-deep),
    0 4px 10px rgba(180, 83, 9, 0.28);
}

.btn-accent {
  border-radius: 50px;
  padding: 0.85rem 1.75rem;
}

.btn-premium-outline {
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.06) 100%);
  border: 2px solid rgba(255,255,255,0.85) !important;
  color: #fff;
  border-radius: 50px;
  padding: 0.85rem 1.75rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 4px 0 rgba(0, 0, 0, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.2);
}
.btn-premium-outline:hover {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 6px 0 rgba(11, 31, 58, 0.2),
    0 14px 28px rgba(0, 0, 0, 0.22);
}

.btn-call {
  border-radius: 50px;
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-wa-nav,
.btn-cta-wa,
.btn-whatsapp,
.vehicle-btn-wa,
.seat-filter-card__btn--wa {
  background: linear-gradient(180deg, #34d86a 0%, #25d366 50%, #1da851 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1),
    0 4px 0 var(--btn-edge-wa),
    0 8px 18px rgba(18, 140, 65, 0.38);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.btn-wa-nav {
  border-radius: 50px;
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-wa-nav:hover,
.btn-cta-wa:hover,
.btn-whatsapp:hover,
.vehicle-btn-wa:hover,
.seat-filter-card__btn--wa:hover {
  background: linear-gradient(180deg, #4ade80 0%, #25d366 50%, #128c41 100%) !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.45),
    0 6px 0 var(--btn-edge-wa),
    0 14px 28px rgba(18, 140, 65, 0.42);
}

.btn-wa-nav:active,
.btn-cta-wa:active,
.btn-whatsapp:active,
.vehicle-btn-wa:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.15),
    0 1px 0 var(--btn-edge-wa-deep),
    0 4px 10px rgba(18, 140, 65, 0.28);
}

.site-main .btn-dark,
.btn-dark,
.submit-btn {
  background: linear-gradient(180deg, #1e3a5f 0%, #0b1f3a 55%, #061220 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2),
    0 4px 0 var(--btn-edge-dark),
    0 8px 18px rgba(6, 18, 32, 0.45);
}

.site-main .btn-dark:hover,
.btn-dark:hover,
.submit-btn:hover {
  background: linear-gradient(180deg, #2d4a6f 0%, #122b49 55%, #0b1f3a 100%) !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.18),
    0 6px 0 var(--btn-edge-dark),
    0 14px 28px rgba(6, 18, 32, 0.5);
}

.submit-btn {
  border-radius: 50px;
  padding: 1rem;
  width: 100%;
}
.submit-btn:hover {
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 48%, #d97706 100%) !important;
  color: var(--color-on-accent) !important;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.42),
    0 6px 0 var(--btn-edge-accent),
    0 14px 28px rgba(180, 83, 9, 0.45);
}

.site-main .btn-outline-dark,
.btn-white {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%) !important;
  color: var(--primary) !important;
  border: 2px solid rgba(11, 31, 58, 0.18) !important;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.95),
    0 4px 0 rgba(11, 31, 58, 0.12),
    0 8px 16px rgba(11, 31, 58, 0.1);
}

.site-main .btn-outline-dark:hover,
.btn-white:hover {
  background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 100%) !important;
  color: var(--primary) !important;
  transform: translateY(-3px);
  box-shadow:
    inset 0 2px 0 #fff,
    0 6px 0 rgba(11, 31, 58, 0.15),
    0 14px 24px rgba(11, 31, 58, 0.14);
}

.site-main .btn.btn-lg,
.site-main .btn-accent.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .btn-accent, .btn-call, .btn-wa-nav, .vehicle-btn, .btn-cta-call, .btn-cta-wa,
  .hero-taxi-submit, .btn-hero-call, .btn-hero-wa, .btn-hero-seats {
    transition: background 0.2s ease, color 0.2s ease;
  }
  .btn-accent:hover, .btn-call:hover, .btn-wa-nav:hover, .vehicle-btn:hover {
    transform: none;
  }
}

.site-main { padding-top: 80px; }
.page-home .site-main { padding-top: 0; }

/* Below-fold sections — faster initial load & scroll */
.site-main > section:not(#home-hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 560px;
}

/* ===== NAVBAR ===== */
.site-navbar {
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease, border-color 0.4s ease;
  padding: 0.85rem 0;
  z-index: 1030;
  background: var(--nav-bg) !important;
  border-bottom: 1px solid var(--nav-border);
}

.site-navbar.navbar-solid {
  background: var(--nav-bg, #0B1F3A) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2) !important;
}

.site-navbar.navbar-transparent {
  background: transparent !important;
  box-shadow: none !important;
  border-bottom-color: transparent;
}

.site-navbar.navbar-glass {
  background: var(--nav-glass) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25) !important;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--nav-border);
}

.site-navbar .nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.55rem 1rem !important;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active,
.site-navbar .nav-link.show {
  color: var(--accent) !important;
}

.site-navbar .nav-link.active {
  font-weight: 600;
}

.nav-main-menu { gap: 0.15rem; }

.navbar-toggler-icon-custom {
  color: #fff;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
}

/* ===== MOBILE MENU DRAWER ===== */
.mobile-menu-drawer {
  width: min(100%, 380px);
  max-width: 100%;
  padding: 0;
  border: none;
  background: #ffffff;
  box-shadow: -8px 0 40px rgba(11, 31, 58, 0.12);
  display: flex;
  flex-direction: column;
}

.mobile-menu-drawer .offcanvas-body {
  padding: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  flex-shrink: 0;
}

.mobile-menu-logo {
  display: inline-flex;
  align-items: center;
  background: #0B1F3A;
  border-radius: 14px;
  padding: 0.5rem 0.85rem;
  line-height: 0;
  box-shadow: 0 4px 18px rgba(11, 31, 58, 0.18);
}

.mobile-menu-logo .brand-logo {
  padding: 0;
}

.mobile-menu-logo .brand-logo-img {
  height: 52px;
  max-width: 150px;
}

.mobile-menu-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(11, 31, 58, 0.12);
  background: #fff;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.mobile-menu-close:hover {
  background: var(--color-surface);
  border-color: rgba(11, 31, 58, 0.2);
  transform: rotate(90deg);
}

.mobile-menu-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 1rem 1.25rem;
  border: none;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: left;
  transition: background 0.25s ease, color 0.25s ease;
}

.mobile-menu-item:hover,
.mobile-menu-item.is-active,
.mobile-menu-group.is-active > .mobile-menu-toggle {
  background: rgba(11, 31, 58, 0.04);
  color: var(--color-primary);
}

.mobile-menu-item-icon {
  width: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.05rem;
}

.mobile-menu-item-label {
  flex: 1;
  letter-spacing: 0.02em;
}

.mobile-menu-chevron {
  color: rgba(11, 31, 58, 0.45);
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-chevron {
  transform: rotate(180deg);
}

.mobile-menu-sub {
  background: rgba(248, 250, 252, 0.95);
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  padding: 0.35rem 0 0.5rem;
}

.mobile-menu-sub a {
  display: block;
  padding: 0.55rem 1.25rem 0.55rem 3.65rem;
  color: var(--color-text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-menu-sub a:hover {
  color: var(--color-accent);
  background: rgba(245, 158, 11, 0.06);
}

.mobile-menu-footer {
  flex-shrink: 0;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
  background: #fff;
}

.mobile-menu-touch-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 0.85rem;
  letter-spacing: 0.02em;
}

.mobile-menu-touch-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s ease;
}

.mobile-menu-touch-link:hover {
  color: var(--color-primary);
}

.mobile-menu-touch-icon {
  width: 22px;
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 0.95rem;
  text-align: center;
}

.mobile-menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mobile-menu-theme-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(11, 31, 58, 0.12);
  background: var(--color-surface);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-theme-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.mobile-menu-action-btn {
  flex: 1;
  min-width: calc(50% - 0.25rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.mobile-menu-action-call {
  background: var(--color-primary);
  color: #fff;
}

.mobile-menu-action-call:hover {
  background: var(--color-secondary);
  color: #fff;
}

.mobile-menu-action-wa {
  background: #25d366;
  color: #fff;
}

.mobile-menu-action-wa:hover {
  background: #128c41;
  color: #fff;
}

.offcanvas-backdrop.show {
  backdrop-filter: blur(2px);
}

.logo-img { height: 50px; width: auto; transition: var(--transition); }

/* ===== BRAND LOGO (official image, transparent cut) ===== */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0.1rem 0;
  transition: var(--transition);
  line-height: 0;
}

.brand-logo:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.brand-logo-img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 10px rgba(245, 158, 11, 0.28));
  transition: filter 0.35s ease, transform 0.35s ease;
}

.brand-logo:hover .brand-logo-img {
  filter: drop-shadow(0 4px 14px rgba(245, 158, 11, 0.42));
}

.brand-logo--footer {
  margin-bottom: 1rem;
}

.brand-logo-img--footer {
  height: 72px;
  max-width: 240px;
}

.site-navbar .brand-logo {
  margin-right: 0.25rem;
}

.footer-logo { height: 50px; filter: brightness(0) invert(1); }

.nav-actions-wrap { flex-shrink: 0; }

.dropdown-menu {
  border-radius: 14px;
  border: 1px solid var(--nav-border);
  padding: 0.5rem;
  margin-top: 0.5rem;
  background: var(--nav-dropdown-bg);
  box-shadow: var(--shadow-lg);
}

.dropdown-menu-dark .dropdown-item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  padding: 0.65rem 1rem;
  border-radius: 8px;
}

.dropdown-menu-dark .dropdown-item:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.nav-cta-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Theme Toggle */
.theme-toggle-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-accent);
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.theme-toggle-btn:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  transform: rotate(15deg) scale(1.05);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.theme-toggle-btn:active { transform: scale(0.95); }

html.theme-switching *,
html.theme-switching *::before,
html.theme-switching *::after {
  transition: background-color 0.45s ease, color 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease !important;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1050;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 36px rgba(37,211,102,0.65); }
}
@media (max-width: 767px) {
  .whatsapp-float {
    right: max(1.15rem, env(safe-area-inset-right, 0px));
    bottom: max(1.15rem, env(safe-area-inset-bottom, 0px));
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
  }
}

/* ===== HERO — PREMIUM TAXI BANNER ===== */
.hero-taxi-banner {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #061220;
  padding-bottom: 3rem;
}
.hero-taxi-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  animation: heroTaxiBgZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroTaxiBgZoom {
  from { transform: scale(1.03); }
  to { transform: scale(1.09); }
}
.hero-taxi-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-taxi-map-img {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-45%);
  width: min(70vw, 720px);
  opacity: 0.22;
  animation: heroMapDrift 30s ease-in-out infinite alternate;
}
@keyframes heroMapDrift {
  from { transform: translateY(-45%) translateX(0); }
  to { transform: translateY(-42%) translateX(-20px); }
}
.hero-taxi-map-routes {
  position: absolute;
  inset: 0;
  opacity: 0.55;
}
.hero-taxi-map-routes svg {
  width: 100%;
  height: 100%;
}
.hero-route-path {
  fill: none;
  stroke: rgba(245,158,11,0.45);
  stroke-width: 2;
  stroke-dasharray: 12 14;
  stroke-linecap: round;
  animation: heroRouteDraw 6s ease-in-out infinite alternate;
}
.hero-route-path--delay { animation-delay: 1.5s; stroke: rgba(255,255,255,0.22); }
.hero-route-path--delay2 { animation-delay: 3s; stroke: rgba(245,158,11,0.28); }
@keyframes heroRouteDraw {
  from { stroke-dashoffset: 80; opacity: 0.4; }
  to { stroke-dashoffset: 0; opacity: 1; }
}
.hero-route-dot {
  fill: var(--accent);
  opacity: 0.85;
}
.hero-route-dot--pulse {
  animation: heroDotPulse 2.5s ease infinite;
}
@keyframes heroDotPulse {
  0%, 100% { r: 4; opacity: 0.85; }
  50% { r: 6; opacity: 1; }
}
.hero-taxi-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(6,18,32,0.94) 0%, rgba(11,31,58,0.78) 40%, rgba(11,31,58,0.35) 70%, rgba(6,18,32,0.65) 100%),
    linear-gradient(180deg, transparent 50%, rgba(6,18,32,0.97) 100%);
}
.hero-taxi-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(245,158,11,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 10%, transparent 85%);
}
.hero-taxi-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 5;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 30px, #061220 30px, #061220 60px);
}
.hero-taxi-wrap {
  position: relative;
  z-index: 2;
  padding: 7rem 0 2rem;
}

/* Split layout — no vehicle images */
.hero-taxi-banner--split .hero-taxi-gradient {
  background:
    linear-gradient(105deg, rgba(6,18,32,0.95) 0%, rgba(11,31,58,0.82) 45%, rgba(11,31,58,0.55) 72%, rgba(6,18,32,0.88) 100%),
    linear-gradient(180deg, transparent 45%, rgba(6,18,32,0.97) 100%);
}
.hero-taxi-slash {
  position: absolute;
  top: -8%;
  right: -12%;
  bottom: 12%;
  width: min(52vw, 520px);
  z-index: 1;
  background: linear-gradient(155deg, rgba(251,191,36,0.92) 0%, rgba(245,158,11,0.78) 48%, rgba(217,119,6,0.55) 100%);
  transform: skewX(-16deg);
  opacity: 0.28;
  pointer-events: none;
  filter: blur(0.5px);
}
.hero-taxi-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
}
.hero-taxi-glow--1 {
  width: 320px;
  height: 320px;
  top: 18%;
  right: 8%;
  background: rgba(245,158,11,0.22);
}
.hero-taxi-glow--2 {
  width: 240px;
  height: 240px;
  bottom: 22%;
  left: 35%;
  background: rgba(59,130,246,0.12);
}
.hero-taxi-banner--split .hero-taxi-lead {
  max-width: 580px;
}
.hero-taxi-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.35rem;
}
.hero-taxi-highlight-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.hero-taxi-highlight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245,158,11,0.4);
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}
.hero-taxi-highlight-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,158,11,0.28), rgba(245,158,11,0.08));
  color: var(--accent);
  font-size: 1rem;
  border: 1px solid rgba(245,158,11,0.25);
}
.hero-taxi-highlight-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.hero-taxi-highlight-text strong {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero-taxi-highlight-text small {
  color: rgba(255,255,255,0.58);
  font-size: 0.68rem;
  line-height: 1.3;
}
.hero-taxi-booking-wrap {
  position: relative;
  max-width: 440px;
  margin-left: auto;
}
.hero-taxi-booking-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-lg) + 12px);
  background: linear-gradient(135deg, rgba(245,158,11,0.35), rgba(245,158,11,0.05));
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}
.hero-taxi-booking-wrap .hero-taxi-booking {
  position: relative;
  z-index: 1;
}

/* Left copy */
.hero-taxi-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.4);
  padding: 0.45rem 0.9rem 0.45rem 0.45rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fde68a;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(10px);
}
.hero-taxi-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--color-on-accent);
  font-size: 0.85rem;
}
.hero-taxi-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  background: rgba(34,197,94,0.15);
  color: #86efac;
  font-size: 0.72rem;
  font-weight: 700;
}
.hero-taxi-badge-live i {
  font-size: 0.45rem;
  animation: heroTaxiPulse 2s ease infinite;
}
@keyframes heroTaxiPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.hero-taxi-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 5.5vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.hero-taxi-highlight {
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-taxi-lead {
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 1.35rem;
}
.hero-taxi-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hero-taxi-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
  transition: var(--transition);
}
.hero-taxi-chip:hover {
  color: var(--color-on-accent);
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.hero-taxi-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.btn-hero-call {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1.15rem 0.55rem 0.55rem;
  border-radius: 50px;
  text-decoration: none;
  color: var(--color-on-accent);
}
.btn-hero-call:hover {
  color: var(--color-on-accent);
}
.btn-hero-call-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.25);
  font-size: 1rem;
}
.btn-hero-call small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.85;
  line-height: 1.2;
}
.btn-hero-call strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
}
.btn-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 50px;
  font-size: 0.92rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.06) 100%);
  border: 2px solid rgba(255,255,255,0.75) !important;
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 4px 0 rgba(0, 0, 0, 0.28),
    0 8px 20px rgba(0, 0, 0, 0.22);
}
.btn-hero-wa:hover {
  background: linear-gradient(180deg, #34d86a 0%, #25d366 50%, #1da851 100%) !important;
  border-color: #25D366 !important;
  color: #fff;
}
.btn-hero-seats {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 50px;
  font-size: 0.92rem;
  text-decoration: none;
  color: #fde68a;
  background: linear-gradient(180deg, rgba(245,158,11,0.22) 0%, rgba(245,158,11,0.1) 100%);
  border: 2px solid rgba(245,158,11,0.55) !important;
  backdrop-filter: blur(8px);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 0 rgba(180, 83, 9, 0.45),
    0 8px 18px rgba(0, 0, 0, 0.2);
}
.btn-hero-seats:hover {
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 48%, #d97706 100%) !important;
  border-color: var(--accent) !important;
  color: var(--color-on-accent);
}
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
.hero-trust-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0.9rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.hero-trust-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245,158,11,0.45);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.hero-trust-card--google {
  border-color: rgba(245,158,11,0.3);
  background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(255,255,255,0.06));
}
.hero-trust-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,158,11,0.18);
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-trust-card--google .hero-trust-card-icon {
  background: #fff;
  color: #4285F4;
  font-size: 1.1rem;
}
.hero-trust-card-body strong,
.hero-trust-card-body .hero-count {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}
.hero-trust-card-body span {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.58);
  font-weight: 500;
}
.hero-trust-stars {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 0.15rem;
}
.hero-trust-stars i {
  font-size: 0.55rem;
  color: var(--accent);
}
.hero-trust-stars span {
  font-size: 0.68rem !important;
  color: #fde68a !important;
  font-weight: 700;
  margin-left: 0.25rem;
}

/* Vehicle showcase */
.hero-taxi-showcase {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem 0 3.5rem;
}
.hero-taxi-showcase-ring {
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  width: min(92%, 380px);
  aspect-ratio: 2.1 / 1;
  border-radius: 50%;
  border: 2px dashed rgba(245,158,11,0.35);
  animation: heroTaxiRingSpin 28s linear infinite;
}
@keyframes heroTaxiRingSpin {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}
.hero-taxi-showcase-glow {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: 75%;
  height: 35%;
  background: radial-gradient(ellipse, rgba(245,158,11,0.45) 0%, transparent 70%);
  filter: blur(22px);
}
.hero-taxi-car-shadow {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  width: 65%;
  height: 18px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.55) 0%, transparent 70%);
  filter: blur(8px);
  z-index: 1;
}
.hero-taxi-car-img {
  position: relative;
  z-index: 2;
  width: min(115%, 540px);
  max-width: none;
  margin: 0 auto -1rem;
  display: block;
  object-fit: contain;
  animation: heroTaxiCarFloat 5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.hero-taxi-car-img--transparent {
  filter: drop-shadow(0 32px 52px rgba(0,0,0,0.45)) drop-shadow(0 0 40px rgba(245,158,11,0.12));
  mix-blend-mode: normal;
}
@keyframes heroTaxiCarFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.01); }
}
.hero-taxi-float {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.7rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: rgba(11,31,58,0.88);
  border: 1px solid rgba(245,158,11,0.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.28);
  animation: heroTaxiFloatBadge 4s ease-in-out infinite;
}
.hero-taxi-float i { color: var(--accent); }
.hero-taxi-float--top { top: 6%; right: 0; }
.hero-taxi-float--right { top: 42%; left: -2%; animation-delay: 0.8s; }
.hero-taxi-float--bottom { bottom: 22%; right: 0; animation-delay: 1.6s; }
@keyframes heroTaxiFloatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.hero-taxi-fleet-picker {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.45rem;
  padding: 0.4rem;
  background: rgba(6,18,32,0.82);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  backdrop-filter: blur(12px);
}
.hero-taxi-fleet-btn {
  width: 54px;
  height: 34px;
  padding: 0.15rem;
  border: 2px solid transparent;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
}
.hero-taxi-fleet-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-taxi-fleet-btn:hover,
.hero-taxi-fleet-btn.active {
  border-color: var(--accent);
  background: rgba(245,158,11,0.18);
  box-shadow: 0 0 14px rgba(245,158,11,0.3);
}

/* Booking panel — glassmorphism */
.hero-taxi-booking {
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
.hero-taxi-booking--glass {
  background: linear-gradient(145deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.06) 100%);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(255,255,255,0.08);
}
.hero-taxi-booking--glass:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 72px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.4);
}
.hero-taxi-booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--accent), #fcd34d, var(--accent));
  background-size: 200% 100%;
  animation: heroGlassShine 4s ease infinite;
}
@keyframes heroGlassShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-taxi-booking--glass .hero-taxi-booking-title {
  color: #fff;
  font-family: var(--font-heading);
}
.hero-taxi-booking--glass .hero-taxi-booking-head p {
  color: rgba(255,255,255,0.72);
}
.hero-taxi-booking--glass .hero-taxi-booking-note {
  color: rgba(255,255,255,0.65);
}
.hero-taxi-booking--glass .hero-taxi-field .form-control,
.hero-taxi-booking--glass .hero-taxi-field .form-select {
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.hero-taxi-booking--glass .hero-taxi-field-dot {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.85);
}

/* Solid fallback (non-glass) */
.hero-taxi-booking:not(.hero-taxi-booking--glass) {
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(245,158,11,0.28);
  box-shadow: 0 28px 64px rgba(0,0,0,0.38);
}
.hero-taxi-booking:not(.hero-taxi-booking--glass)::before {
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 14px, #0B1F3A 14px, #0B1F3A 28px);
  animation: none;
}
.hero-taxi-booking-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}
.hero-taxi-booking-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #d97706);
  color: var(--color-on-accent);
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(245,158,11,0.35);
}
.hero-taxi-booking-title {
  font-size: 1.15rem;
  margin: 0;
  color: var(--heading-color);
  line-height: 1.2;
}
.hero-taxi-booking-head p {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: var(--color-text-secondary);
}
.hero-taxi-route {
  position: relative;
  margin-bottom: 0.85rem;
}
.hero-taxi-route-line {
  position: absolute;
  left: 0.55rem;
  top: 1.6rem;
  bottom: 1.6rem;
  width: 2px;
  background: linear-gradient(180deg, #22c55e, var(--accent));
  border-radius: 2px;
  z-index: 0;
}
.hero-taxi-field {
  position: relative;
  margin-bottom: 0.55rem;
}
.hero-taxi-field:last-child { margin-bottom: 0; }
.hero-taxi-field-dot {
  position: absolute;
  left: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.9);
}
.hero-taxi-field-dot--pickup { background: #22c55e; }
.hero-taxi-field-dot--drop { background: var(--accent); }
.hero-taxi-field .form-control,
.hero-taxi-field .form-select {
  padding-left: 1.65rem;
  border-radius: 12px;
  border: 1px solid var(--color-input-border);
  background: var(--color-input-bg);
  color: var(--color-text);
  font-size: 0.88rem;
  min-height: 46px;
}
.hero-taxi-field--plain > i {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  z-index: 2;
  pointer-events: none;
}
.hero-taxi-field--plain .form-control,
.hero-taxi-field--plain .form-select {
  padding-left: 2.5rem;
}
.hero-taxi-field .form-control:focus,
.hero-taxi-field .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.hero-taxi-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-size: 0.92rem;
  cursor: pointer;
  width: 100%;
}
.hero-taxi-booking-note {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  color: var(--color-text-secondary);
  text-align: center;
}
.hero-taxi-booking-note i { color: var(--accent); }

/* Road + marquee */
.hero-taxi-road {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.6rem;
  height: 4px;
  background: #1e293b;
  z-index: 1;
  overflow: hidden;
}
.hero-taxi-road-line {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.45) 0, rgba(255,255,255,0.45) 22px, transparent 22px, transparent 44px);
  animation: heroTaxiRoadMove 1s linear infinite;
}
@keyframes heroTaxiRoadMove {
  from { transform: translateX(0); }
  to { transform: translateX(-44px); }
}
.hero-taxi-road-car {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1rem;
  animation: heroTaxiDrive 7s linear infinite;
  filter: drop-shadow(0 0 8px rgba(245,158,11,0.55));
}
@keyframes heroTaxiDrive {
  from { left: -36px; }
  to { left: calc(100% + 36px); }
}
.hero-taxi-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: rgba(6,18,32,0.94);
  border-top: 1px solid rgba(245,158,11,0.22);
  padding: 0.6rem 0;
  overflow: hidden;
}
.hero-taxi-marquee-track {
  display: flex;
  gap: 2.25rem;
  width: max-content;
  animation: heroTaxiTicker 26s linear infinite;
}
.hero-taxi-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
}
.hero-taxi-marquee-track i { color: var(--accent); }
@keyframes heroTaxiTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 991px) {
  .hero-taxi-banner { min-height: auto; padding-bottom: 2.5rem; }
  .hero-taxi-wrap { padding: 5.5rem 0 1.5rem; }
  .page-home .hero-taxi-banner .container.hero-taxi-wrap {
    padding-left: max(1.35rem, calc(var(--bs-gutter-x) * 0.5 + 0.35rem));
    padding-right: max(1.35rem, calc(var(--bs-gutter-x) * 0.5 + 0.35rem));
  }
  .hero-taxi-booking-wrap { max-width: none; margin-left: 0; margin-right: 0; margin-bottom: 0.5rem; }
  .hero-taxi-booking-wrap::before { inset: 0; opacity: 0.32; border-radius: var(--radius-lg); }
  .hero-taxi-booking { margin-bottom: 0.5rem; }
  .hero-taxi-copy { padding-inline: 0.1rem; }
  .hero-taxi-highlights,
  .hero-taxi-services,
  .hero-taxi-cta { max-width: 100%; }
  .hero-taxi-map-img { width: 90%; right: 0; opacity: 0.08; }
  .hero-trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-taxi-slash { display: none; }
  .hero-taxi-highlights { grid-template-columns: 1fr; }
  .hero-taxi-glow--1 { width: 200px; height: 200px; right: 0; opacity: 0.15; }
  .hero-taxi-glow--2 { display: none; }
  /* Mobile perf — disable heavy hero motion & blur for smooth scroll */
  .hero-taxi-bg,
  .hero-taxi-map-img,
  .hero-route-path,
  .hero-taxi-marquee-track,
  .hero-taxi-road-line,
  .hero-taxi-road-car,
  .hero-taxi-badge-live i,
  .hero-taxi-booking::before,
  .hero-taxi-showcase-ring { animation: none !important; }
  .hero-taxi-bg { transform: none; will-change: auto; }
  .hero-taxi-booking--glass,
  .hero-taxi-highlight-card,
  .site-navbar.navbar-glass {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .hero-taxi-highlight-card {
    background: rgba(255, 255, 255, 0.08);
  }
  .hero-taxi-booking--glass {
    background: rgba(18, 43, 73, 0.88);
    border-color: rgba(255, 255, 255, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-taxi-bg,
  .hero-taxi-car-img,
  .hero-taxi-map-img,
  .hero-route-path,
  .hero-taxi-marquee-track,
  .hero-taxi-road-line,
  .hero-taxi-road-car,
  .hero-taxi-showcase-ring { animation: none !important; }
}

/* Legacy hero (inner pages) */
.hero-luxury {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}
.hero-luxury-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-luxury-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}
.hero-luxury-content { position: relative; z-index: 2; padding: 7rem 0 5rem; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-soft);
  border: 1px solid rgba(245,158,11,0.35);
  color: var(--accent);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-luxury h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.75rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-luxury h1 span { color: var(--accent); }
.hero-lead {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 576px) { .hero-trust-badges { grid-template-columns: repeat(4, 1fr); } }
.hero-trust-item {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 0.85rem 0.75rem;
  text-align: center;
}
.hero-trust-item i { color: var(--accent); font-size: 1.1rem; display: block; margin-bottom: 0.35rem; }
.hero-trust-item strong { display: block; color: #fff; font-size: 0.9rem; font-weight: 700; }
.hero-trust-item span { font-size: 0.68rem; color: rgba(255,255,255,0.6); }

.hero-booking-glass {
  background: var(--color-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: var(--theme-transition);
}
.hero-booking-glass h3 { font-size: 1.35rem; margin-bottom: 0.25rem; color: var(--heading-color); }
.hero-booking-glass .form-label { font-size: 0.8rem; font-weight: 600; color: var(--color-text-secondary); }
.hero-booking-glass .form-control,
.hero-booking-glass .form-select {
  border-radius: 12px;
  border: 1px solid var(--color-input-border);
  background: var(--color-input-bg);
  color: var(--color-text);
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  transition: var(--theme-transition);
}
.hero-booking-glass .form-control:focus,
.hero-booking-glass .form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
  background: var(--color-input-bg);
  color: var(--color-text);
}

/* ===== ANIMATIONS ===== */
.animate-fade-up { opacity: 0; transform: translateY(28px); animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.animate-zoom-in { opacity: 0; transform: scale(0.92); animation: zoomIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
@keyframes zoomIn { to { opacity: 1; transform: scale(1); } }
.animate-on-scroll { opacity: 0; transform: translate3d(0, 24px, 0); transition: opacity 0.55s ease, transform 0.55s ease; }
.animate-on-scroll.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

/* ===== SECTIONS ===== */
.section-padding { padding: 6rem 0; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  color: var(--heading-color);
}
.section-subtitle { color: var(--color-text-secondary); font-size: 1.05rem; max-width: 580px; line-height: 1.7; }

/* ===== TRUST STATS ===== */
.trust-stats-section {
  background: transparent;
  margin-top: 0;
  position: relative;
  z-index: 5;
  padding-bottom: 0;
}
.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  transition: var(--theme-transition);
}
@media (min-width: 768px) { .trust-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-stat-item {
  text-align: center;
  padding: 0.5rem;
}
.trust-stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--accent-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.35rem;
}
.trust-stat-item .num {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  display: block;
}
.trust-stat-item span { font-size: 0.85rem; color: var(--color-text-secondary); font-weight: 500; margin-top: 0.35rem; display: block; }

/* ===== PREMIUM SERVICE CARDS ===== */
.premium-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.35s ease, background-color 0.45s ease;
  position: relative;
  overflow: hidden;
}
.premium-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 8px 28px var(--accent-glow);
  border-color: var(--color-border-hover);
}
.premium-card:hover::before { transform: scaleX(1); }
.premium-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.35rem;
  transition: var(--transition);
}
.premium-card:hover .premium-card-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--primary);
  transform: scale(1.05);
}
.premium-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.65rem; color: var(--card-heading); }
.premium-card p { color: var(--color-text-secondary); font-size: 0.92rem; margin-bottom: 1.25rem; }
.premium-card-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s ease;
}
.premium-card-link:hover { gap: 0.65rem; color: var(--accent-hover); }

/* ===== WHY CHOOSE US ===== */
.why-premium-grid .premium-card { text-align: center; padding: 2.25rem 1.5rem; }
.why-premium-grid .premium-card-icon { margin: 0 auto 1.25rem; }

/* ===== VEHICLE CARDS ===== */
.vehicle-card-premium {
  display: flex;
  flex-direction: column;
  background: var(--color-card);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), box-shadow 0.45s ease, background-color 0.45s ease, border-color 0.35s ease;
}
.vehicle-card-premium:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg), 0 8px 32px var(--accent-glow);
  border-color: var(--color-border-hover);
}
.vehicle-card-media {
  position: relative;
  height: 230px;
  background: var(--vehicle-media-bg);
  overflow: hidden;
}
.vehicle-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem 1.25rem 0.5rem;
  transition: transform 0.65s ease;
  content-visibility: auto;
}
.vehicle-card-premium:hover .vehicle-card-media img { transform: scale(1.1); }
.vehicle-badge-booked {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: 50px;
  box-shadow: 0 6px 20px var(--accent-glow);
}
.vehicle-glass-chip {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--card-heading);
  background: var(--color-glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border, rgba(255,255,255,0.8));
  border-radius: 50px;
  box-shadow: var(--shadow);
}
.vehicle-glass-chip i { color: var(--accent); }
.vehicle-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem;
  gap: 1rem;
}
.vehicle-card-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--card-heading);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.vehicle-card-sub { font-size: 0.78rem; color: var(--color-text-secondary); margin: 0.2rem 0 0; }
.vehicle-glass-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  padding: 0.75rem 0.5rem;
  background: var(--vehicle-features-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  transition: var(--theme-transition);
}
.vehicle-feature { text-align: center; }
.vehicle-feature-icon {
  width: 34px; height: 34px;
  margin: 0 auto 0.3rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.vehicle-card-premium:hover .vehicle-feature-icon { transform: scale(1.08); }
.vehicle-feature-text strong { font-size: 0.72rem; display: block; color: var(--card-heading); }
.vehicle-feature-text small { font-size: 0.6rem; color: var(--color-text-secondary); text-transform: uppercase; }
.vehicle-card-price {
  margin-top: auto;
  padding: 0.85rem 1rem;
  background: var(--accent-soft);
  border-radius: 12px;
  border: 1px solid var(--color-border-hover);
  transition: var(--theme-transition);
}
.vehicle-price-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--color-text-secondary); }
.vehicle-price-value { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--accent); }
.vehicle-price-note { font-size: 0.72rem; color: var(--color-text-secondary); margin: 0.25rem 0 0; }
.vehicle-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.vehicle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.72rem 0.5rem;
  font-size: 0.8rem;
  border-radius: 12px;
  text-decoration: none;
}
.vehicle-btn-wa {
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%) !important;
  color: #128C41 !important;
  border: 2px solid #25D366 !important;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.9),
    0 3px 0 var(--btn-edge-wa),
    0 6px 14px rgba(18, 140, 65, 0.22) !important;
}
.vehicle-btn-wa:hover {
  background: linear-gradient(180deg, #34d86a 0%, #25d366 50%, #1da851 100%) !important;
  color: #fff !important;
  border-color: #25D366 !important;
}
button.vehicle-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}

/* ===== LOCAL CABS SERVICE PICKER ===== */
.local-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.local-service-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.1rem;
  background: var(--color-card);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.local-service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.local-service-card.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 8px 28px var(--accent-glow);
}
.local-service-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.25rem;
}
.local-service-card.is-selected .local-service-card__icon {
  background: var(--accent);
  color: var(--color-on-accent);
}
.local-service-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
}
.local-service-card__body strong {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.3;
}
.local-service-card__body small {
  font-size: 0.78rem;
  color: var(--color-text-secondary);
  line-height: 1.45;
}
.local-service-card__check {
  flex-shrink: 0;
  color: var(--color-border);
  font-size: 1.2rem;
  transition: var(--transition);
}
.local-service-card.is-selected .local-service-card__check { color: var(--accent); }

.local-booking-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--accent-soft), var(--color-card));
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  margin-bottom: 0.5rem;
}
.local-booking-summary__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent);
  color: var(--color-on-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.local-booking-summary__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin: 0 0 0.15rem;
  font-weight: 700;
}
.local-booking-summary__text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-text);
  line-height: 1.5;
}

.local-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.local-contact-strip__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.local-contact-strip__item > i {
  font-size: 1.35rem;
  color: var(--accent);
}
.local-contact-strip__item > i.fa-whatsapp,
.local-contact-strip__item > .fa-brands.fa-whatsapp { color: #25D366; }
.local-contact-strip__item span {
  display: block;
  font-size: 0.72rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.local-contact-strip__item a {
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
}
.local-contact-strip__item a:hover { color: var(--accent); }

@media (max-width: 991px) {
  .local-service-grid { grid-template-columns: 1fr; }
}

/* ===== COMING SOON ===== */
.coming-soon-section { background: var(--color-bg); }
.coming-soon-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.coming-soon-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.coming-soon-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.coming-soon-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.coming-soon-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 auto 2rem;
  max-width: 480px;
}
.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ===== GOOGLE REVIEWS SLIDER ===== */
.google-reviews-section {
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.google-reviews-section .section-subtitle {
  color: var(--color-text-secondary);
  max-width: 640px;
}

.google-reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.65rem;
  margin-bottom: 1.75rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.google-reviews-summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4285F4 0%, #EA4335 35%, #FBBC04 65%, #34A853 100%);
}

.google-reviews-summary__left {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.google-reviews-summary__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #4285F4;
  box-shadow: 0 6px 18px rgba(66, 133, 244, 0.18);
  flex-shrink: 0;
}

.google-reviews-summary__rating {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.google-reviews-summary__rating strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
  letter-spacing: -0.02em;
}

.google-reviews-summary__stars {
  color: #F59E0B;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.google-reviews-summary__count {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
}

.google-reviews-summary__biz {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  line-height: 1.45;
}

.google-reviews-summary__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: #1a73e8;
  border: 2px solid #1a73e8;
  box-shadow: 0 4px 14px rgba(26, 115, 232, 0.35);
  transition: var(--transition);
  white-space: nowrap;
}

.google-reviews-summary__cta:hover {
  background: #1557b0;
  border-color: #1557b0;
  color: #fff;
  transform: translateY(-2px);
}

.google-reviews-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.google-reviews-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-width: 0;
  padding: 0.15rem 0;
}

.google-reviews-track {
  display: flex;
  align-items: stretch;
  gap: 1.1rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.35rem 0.2rem 0.85rem;
}
.google-reviews-track.is-sliding {
  will-change: transform;
}

.google-review-card {
  flex: 0 0 calc(100% - 0.25rem);
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.35rem 1.35rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  min-height: 100%;
}

.google-review-card:hover {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: var(--shadow-lg), 0 8px 28px rgba(245, 158, 11, 0.12);
  transform: translateY(-3px);
}

.google-review-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  flex-shrink: 0;
}

.google-review-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--accent);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

.google-review-card__meta {
  flex: 1;
  min-width: 0;
}

.google-review-card__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.3;
  word-break: break-word;
}

.google-review-card__time {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.4;
}

.google-review-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: #1a73e8;
  background: rgba(26, 115, 232, 0.12);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(26, 115, 232, 0.2);
}

.google-review-card__g {
  color: #4285F4;
  font-size: 1.15rem;
  flex-shrink: 0;
  opacity: 1;
}

.google-review-card__stars {
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.google-review-card__text {
  margin: 0;
  flex: 1;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--color-text);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.google-reviews-nav {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: var(--color-card);
  color: var(--heading-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
  z-index: 2;
}

.google-reviews-nav:hover:not(:disabled) {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--color-on-accent);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.google-reviews-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.google-reviews-footer__btn,
.google-reviews-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: 50px;
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 48%, #d97706 100%);
  color: var(--color-on-accent) !important;
  border: 2px solid #d97706;
  box-shadow: 0 4px 0 #b45309, 0 8px 20px rgba(245, 158, 11, 0.35);
  transition: var(--transition);
}

.google-reviews-footer__btn:hover,
.google-reviews-all-btn:hover {
  text-decoration: none !important;
  color: var(--color-on-accent) !important;
  transform: translateY(-2px);
}

.google-reviews-footer__btn span {
  text-decoration: none;
}

@media (min-width: 576px) {
  .google-review-card { flex: 0 0 calc(50% - 0.55rem); }
}

@media (min-width: 992px) {
  .google-review-card { flex: 0 0 calc(33.333% - 0.74rem); }
}

@media (min-width: 1200px) {
  .google-review-card { flex: 0 0 calc(25% - 0.83rem); }
}

@media (max-width: 767px) {
  .google-reviews-summary {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.35rem 1.15rem;
  }
  .google-reviews-summary__left {
    flex-direction: column;
    text-align: center;
  }
  .google-reviews-summary__rating { justify-content: center; }
  .google-reviews-summary__cta { width: 100%; }
  .google-reviews-nav { width: 38px; height: 38px; font-size: 0.85rem; }
  .google-review-card { padding: 1.2rem 1.1rem; }
  .google-review-card__text { font-size: 0.9rem; }
  .google-reviews-footer__btn,
  .google-reviews-all-btn { width: 100%; max-width: 360px; }
}

[data-theme="dark"] .google-reviews-section {
  background: linear-gradient(180deg, #0a1628 0%, var(--color-bg) 100%);
}

[data-theme="dark"] .google-reviews-summary {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .google-reviews-summary__icon {
  background: #1f2937;
  border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .google-reviews-summary__rating strong,
[data-theme="dark"] .google-reviews-summary__count {
  color: #fff;
}

[data-theme="dark"] .google-reviews-summary__biz {
  color: #D1D5DB;
}

[data-theme="dark"] .google-review-card {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .google-review-card:hover {
  border-color: rgba(245, 158, 11, 0.5);
  background: #141c2e;
}

[data-theme="dark"] .google-review-card__name {
  color: #fff;
}

[data-theme="dark"] .google-review-card__time {
  color: #9CA3AF;
}

[data-theme="dark"] .google-review-card__text {
  color: #E5E7EB;
}

[data-theme="dark"] .google-review-card__badge {
  color: #93c5fd;
  background: rgba(26, 115, 232, 0.2);
  border-color: rgba(147, 197, 253, 0.25);
}

[data-theme="dark"] .google-reviews-nav {
  background: #1f2937;
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

[data-theme="dark"] .google-reviews-section .section-title {
  color: #fff;
}

[data-theme="dark"] .google-reviews-section .section-subtitle {
  color: #D1D5DB;
}

.testimonial-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), 0 6px 24px var(--accent-glow); }
.testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-soft);
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--card-heading); margin: 0; }
.testimonial-meta { font-size: 0.78rem; color: var(--color-text-secondary); }
.testimonial-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 0.85rem; }
.testimonial-text { color: var(--color-text-secondary); font-size: 0.92rem; line-height: 1.75; font-style: italic; margin-bottom: 1rem; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a73e8;
  background: rgba(26,115,232,0.08);
  padding: 0.3rem 0.65rem;
  border-radius: 50px;
}

/* ===== GALLERY MASONRY ===== */
.gallery-masonry {
  columns: 2;
  column-gap: 1rem;
}
@media (min-width: 768px) { .gallery-masonry { columns: 3; column-gap: 1.25rem; } }
@media (min-width: 1200px) { .gallery-masonry { columns: 4; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall img { min-height: 280px; object-fit: cover; }
.gallery-item.wide img { min-height: 180px; object-fit: cover; }

/* ===== TOUR IMAGE CARDS ===== */
.tour-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 320px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.tour-img-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.tour-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-img-card:hover img { transform: scale(1.08); }
.tour-img-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,31,58,0.92) 0%, rgba(11,31,58,0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}
.tour-img-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.35rem; }
.tour-img-card p { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-bottom: 1rem; }
.tour-img-card .btn { font-size: 0.82rem; padding: 0.55rem 1.15rem; }

/* ===== PREMIUM CTA ===== */
.cta-premium {
  background: var(--cta-gradient);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--nav-border);
  transition: var(--theme-transition);
}
.cta-premium::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
}
.cta-premium h2 { color: #fff; font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.75rem; position: relative; }
.cta-premium p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 2rem; position: relative; }
.cta-btn-group { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; position: relative; }
.btn-cta-call {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-cta-wa {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-cta-book {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%) !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.55) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 4px 0 rgba(0, 0, 0, 0.28),
    0 8px 20px rgba(0, 0, 0, 0.22);
}
.btn-cta-book:hover {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%) !important;
  color: var(--primary) !important;
  transform: translateY(-3px);
  box-shadow:
    inset 0 2px 0 #fff,
    0 6px 0 rgba(11, 31, 58, 0.15),
    0 14px 24px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, var(--footer-bg-start) 0%, var(--footer-bg-end) 100%);
  color: var(--footer-text, rgba(255,255,255,0.72));
  border-top: 1px solid var(--nav-border);
  transition: var(--theme-transition);
}
.footer-heading {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.35rem;
}
.footer-text { font-size: 0.9rem; line-height: 1.85; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  color: var(--footer-link, rgba(255,255,255,0.65));
  font-size: 0.88rem;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  transition: var(--transition);
}
.footer-links a i { color: var(--accent); min-width: 16px; margin-top: 3px; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.social-btn {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--accent); color: var(--primary); transform: translateY(-3px); }
.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.45rem 0.85rem;
  border-radius: 50px;
  color: rgba(255,255,255,0.8);
}
.footer-trust-badge i { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}
.footer-bottom span { color: var(--accent); }
.footer-credit {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.02em;
}
.footer-credit a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}
.footer-credit a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

/* ===== INNER PAGES ===== */
.page-hero {
  background: var(--cta-gradient);
  padding: 4rem 0;
  color: #fff;
}
.page-hero-title { font-size: clamp(1.8rem, 4vw, 2.75rem); color: #fff; margin-bottom: 0.75rem; }
.page-hero-text { color: rgba(255,255,255,0.78); max-width: 620px; }
.page-breadcrumb .breadcrumb-item a { color: var(--accent); text-decoration: none; }
.page-breadcrumb .breadcrumb-item, .page-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.55); }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

.page-brand-banner {
  position: relative;
  overflow: hidden;
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 4px solid var(--accent);
  padding: 1.35rem 0;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  animation: brandBannerEnter 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.page-brand-banner__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 120% at 50% 50%, rgba(245, 158, 11, 0.14), transparent 70%);
  pointer-events: none;
  animation: brandGlowPulse 3.5s ease-in-out infinite;
}
.page-brand-banner__sweep {
  position: absolute;
  top: 0;
  left: -55%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(245, 158, 11, 0.07) 45%, rgba(252, 211, 77, 0.18) 50%, rgba(245, 158, 11, 0.07) 55%, transparent 100%);
  pointer-events: none;
  animation: brandSweep 4.2s ease-in-out infinite;
}
.page-brand-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
}
.page-brand-banner__line {
  display: block;
  width: 0;
  height: 2px;
  max-width: clamp(2rem, 10vw, 5.5rem);
  background: linear-gradient(90deg, transparent, var(--accent));
  border-radius: 2px;
  animation: brandLineGrow 1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}
.page-brand-banner__line--right {
  background: linear-gradient(90deg, var(--accent), transparent);
}
.page-brand-banner__icon {
  color: var(--accent);
  font-size: 1rem;
  opacity: 0;
  animation: brandIconPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s forwards, brandIconFloat 2.8s ease-in-out 1.3s infinite;
}
.page-brand-banner__icon--right {
  animation-delay: 0.65s, 1.5s;
}
.page-brand-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4.5vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.25;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.28em;
}
.page-brand-banner__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  background: linear-gradient(120deg, #d97706 0%, #f59e0b 25%, #fcd34d 50%, #f59e0b 75%, #d97706 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    brandWordReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) calc(0.12s * var(--i)) forwards,
    brandWordShimmer 3.5s linear calc(0.75s + 0.1s * var(--i)) infinite;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.25));
}

@keyframes brandBannerEnter {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes brandGlowPulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}
@keyframes brandSweep {
  0% { left: -55%; }
  45%, 100% { left: 110%; }
}
@keyframes brandLineGrow {
  from { width: 0; opacity: 0; }
  to { width: clamp(2rem, 10vw, 5.5rem); opacity: 1; }
}
@keyframes brandIconPop {
  from { opacity: 0; transform: scale(0.4) rotate(-20deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes brandIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes brandWordReveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes brandWordShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 220% center; }
}

@media (prefers-reduced-motion: reduce) {
  .page-brand-banner,
  .page-brand-banner__glow,
  .page-brand-banner__sweep,
  .page-brand-banner__line,
  .page-brand-banner__icon,
  .page-brand-banner__word {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    width: clamp(2rem, 10vw, 5.5rem);
  }
}

@media (max-width: 575px) {
  .page-brand-banner__line { display: none; }
  .page-brand-banner__icon { font-size: 0.85rem; }
}

.fleet-category-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}
.outstation-block { background: var(--color-card); border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--color-border); transition: var(--theme-transition); }
.terms-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0.65rem 1.5rem; }
.terms-list li { font-size: 1.05rem; font-weight: 700; color: var(--color-text); padding-left: 1.1rem; position: relative; line-height: 1.45; }
.terms-list li::before { content: '•'; position: absolute; left: 0; color: var(--accent); font-weight: 700; font-size: 1.15rem; }
.service-list-item {
  background: var(--color-surface);
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--color-text);
  transition: var(--theme-transition);
}
.service-extras { background: var(--color-card); border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--color-border); transition: var(--theme-transition); }

/* Legacy compat */
.service-card, .process-card, .benefit-card, .tour-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  height: 100%;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover, .process-card:hover, .tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-icon, .process-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--accent);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.tour-card { padding: 0; overflow: hidden; }
.tour-img-photo { height: 200px; overflow: hidden; position: relative; }
.tour-img-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tour-card:hover .tour-img-photo img { transform: scale(1.06); }
.tour-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--accent); color: var(--color-on-accent);
  padding: 0.3rem 0.75rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700;
}
.tour-body { padding: 1.5rem; }
.tour-body h3 { font-size: 1.1rem; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.content-img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.content-img { width: 100%; display: block; }
.check-list { list-style: none; padding: 0; }
.check-list li { padding-left: 1.5rem; position: relative; color: var(--color-text-secondary); margin-bottom: 0.65rem; }
.check-list li::before { content: '\f26a'; font-family: 'bootstrap-icons'; position: absolute; left: 0; color: var(--accent); }

/* ===== ABOUT PAGE ===== */
.about-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-check-list li { font-size: 0.95rem; margin-bottom: 0.75rem; }
.about-mission-box {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  position: relative;
}
.about-mission-box i { font-size: 1.25rem; margin-bottom: 0.5rem; display: block; opacity: 0.7; }
.about-mission-box p { color: var(--color-text); font-style: italic; font-size: 0.95rem; line-height: 1.7; }

.founder-grid {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.founders-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 50%, var(--color-bg) 100%);
  position: relative;
  overflow: hidden;
}

.founders-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(245, 158, 11, 0.06), transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(11, 31, 58, 0.04), transparent 70%);
  pointer-events: none;
}

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

.founder-card {
  display: flex;
  flex-direction: column;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  height: 100%;
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(11, 31, 58, 0.14);
  border-color: rgba(245, 158, 11, 0.35);
}

.founder-card__visual {
  position: relative;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  background: linear-gradient(160deg, #0B1F3A 0%, #122B49 100%);
}

.founder-card__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transition: transform 0.5s ease;
}

.founder-card:hover .founder-card__photo {
  transform: scale(1.04);
}

.founder-card__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(11, 31, 58, 0.35) 75%,
    rgba(11, 31, 58, 0.88) 100%
  );
  pointer-events: none;
}

.founder-card__role-pill {
  position: absolute;
  bottom: 1.15rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-on-accent);
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 48%, #d97706 100%);
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 4px 0 #b45309,
    0 8px 24px rgba(245, 158, 11, 0.45);
  white-space: nowrap;
  z-index: 2;
}

.founder-card__content {
  padding: 1.65rem 1.75rem 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.founder-card__role-label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.founder-card__name {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--card-heading);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.founder-card__divider {
  width: 48px;
  height: 3px;
  margin: 0 auto 1rem;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.founder-card__desc {
  font-size: 0.94rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin: 0 0 1.15rem;
  flex: 1;
}

.founder-card__footer {
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.founder-card__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
}

.founder-card__brand i {
  color: var(--accent);
  font-size: 0.85rem;
}

@media (max-width: 767px) {
  .founder-card__visual { aspect-ratio: 4 / 4.2; }
  .founder-card__content { padding: 1.35rem 1.25rem 1.25rem; }
  .founder-card__name { font-size: 1.2rem; }
}

[data-theme="dark"] .founders-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, #0a1628 50%, var(--color-bg) 100%);
}

[data-theme="dark"] .founder-card {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .founder-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
}

[data-theme="dark"] .founder-card__name {
  color: #fff;
}

[data-theme="dark"] .founder-card__desc {
  color: #D1D5DB;
}

[data-theme="dark"] .founder-card__footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.65rem;
  padding: 1.25rem 1rem;
  min-height: 100px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.partner-card i { font-size: 1.35rem; }
.partner-card span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--card-heading);
  line-height: 1.35;
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-hover);
}
.partner-card--more {
  background: var(--accent-soft);
  border-style: dashed;
  border-color: var(--color-border-hover);
}

/* ===== QUOTE POPUP MODAL (reference style) ===== */
#quoteModal .modal-content.quote-modal {
  background: #FFFFFF;
  color: #111827;
  border: none;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
#quoteModal .modal-header {
  padding: 1.5rem 1.5rem 0.5rem;
  border: none;
}
#quoteModal .modal-body {
  padding: 0.5rem 1.5rem 1.5rem;
}
#quoteModal .modal-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827 !important;
}
#quoteModal .btn-close {
  opacity: 0.45;
}
.quote-field { position: relative; margin-bottom: 0.85rem; }
.quote-field .form-control,
.quote-field .form-select {
  border-radius: 6px;
  border: 1px solid #E0E0E0;
  background: #FFFFFF;
  color: #111827;
  padding: 0.8rem 2.75rem 0.8rem 1rem;
  font-size: 0.92rem;
  height: auto;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.quote-field .form-control::placeholder { color: #9CA3AF; }
.quote-field .form-control:focus,
.quote-field .form-select:focus {
  border-color: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
  background: #FFFFFF;
  color: #111827;
}
.quote-field-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #F59E0B;
  font-size: 1rem;
  pointer-events: none;
}
.btn-quote-send {
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 0.9rem;
  border-radius: 10px;
  width: 100%;
  text-transform: uppercase;
}
#quoteModal .alert { font-size: 0.88rem; padding: 0.75rem 1rem; border-radius: 8px; }

/* ===== SEAT FILTER — POPUP & BAR ===== */
.seat-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 1.15rem 1.25rem;
  margin-bottom: 2rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.seat-filter-bar__copy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--heading-color);
  white-space: nowrap;
}
.seat-filter-bar__copy i { color: var(--accent); }
.seat-filter-bar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex: 1;
}
.seat-filter-bar__chip {
  padding: 0.38rem 0.85rem;
  border-radius: 50px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.seat-filter-bar__chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.seat-filter-bar__chip.is-active {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.08));
  color: var(--heading-color);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.seat-filter-bar--inline {
  margin-bottom: 1.75rem;
  justify-content: center;
  text-align: center;
}
.seat-filter-bar--inline .seat-filter-bar__copy {
  width: 100%;
  justify-content: center;
}
.seat-filter-bar--inline .seat-filter-bar__chips {
  justify-content: center;
  width: 100%;
}
.seat-filter-bar--inline .seat-filter-inline-status {
  flex-basis: 100%;
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-secondary);
}
.seat-filter-inline-empty {
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-secondary);
  background: var(--color-card);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
}
.seat-filter-inline-empty i {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.seat-filter-inline-empty a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
.seat-filter-inline-empty a:hover { text-decoration: underline; }
.seat-filter-bar__all { white-space: nowrap; margin-left: auto; }

#seatFilterModal .modal-content.seat-filter-modal {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}
.seat-filter-modal__head {
  padding: 1.35rem 1.5rem 0.75rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
}
.seat-filter-modal__head .btn-close { filter: invert(1); opacity: 0.85; }
.seat-filter-modal__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  background: rgba(245,158,11,0.18);
  border: 1px solid rgba(245,158,11,0.35);
  color: #fde68a;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.seat-filter-modal__sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
}
.seat-filter-modal__head .modal-title { color: #fff !important; }

.seat-filter-picker {
  padding: 1.25rem 1.5rem 1rem;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.seat-filter-picker__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.seat-filter-picker__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.55rem;
}
.seat-filter-picker__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  min-height: 64px;
  padding: 0.5rem;
  border: 2px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-card);
  color: var(--heading-color);
  cursor: pointer;
  transition: var(--transition);
}
.seat-filter-picker__btn strong {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  line-height: 1;
}
.seat-filter-picker__btn span {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.seat-filter-picker__btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245,158,11,0.15);
}
.seat-filter-picker__btn.is-active {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(245,158,11,0.06));
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.seat-filter-picker__btn.is-active span { color: var(--accent); }

.seat-filter-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem 0.5rem;
}
.seat-filter-results-title {
  font-weight: 700;
  color: var(--heading-color);
}
.seat-filter-results-count {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.seat-filter-empty {
  text-align: center;
  padding: 2rem 1.5rem 2.5rem;
  color: var(--color-text-secondary);
}
.seat-filter-empty i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
  opacity: 0.85;
}
.seat-filter-empty p { margin-bottom: 0.75rem; font-size: 0.92rem; }

.seat-filter-results {
  padding: 0 1.5rem 1.5rem;
  max-height: 42vh;
  overflow-y: auto;
}
.seat-filter-card {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.seat-filter-card:hover {
  border-color: rgba(245,158,11,0.35);
  box-shadow: var(--shadow);
}
.seat-filter-card__img {
  flex-shrink: 0;
  width: 108px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--vehicle-media-bg, var(--color-surface));
}
.seat-filter-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.25rem;
}
.seat-filter-card__body { flex: 1; min-width: 0; }
.seat-filter-card__type {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.seat-filter-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.25rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.seat-filter-card__meta {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.55rem;
}
.seat-filter-card__meta i { color: var(--accent); margin-right: 0.2rem; }
.seat-filter-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.seat-filter-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  text-decoration: none;
}
.seat-filter-card__btn:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .seat-filter-bar { flex-direction: column; align-items: stretch; }
  .seat-filter-bar__all { margin-left: 0; width: 100%; }
  .seat-filter-card { flex-direction: column; }
  .seat-filter-card__img { width: 100%; height: 120px; }
}

[data-theme="dark"] .seat-filter-bar {
  background: rgba(17,24,39,0.85);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .seat-filter-picker {
  background: rgba(17,24,39,0.5);
}
[data-theme="dark"] .seat-filter-card {
  background: rgba(17,24,39,0.9);
  border-color: rgba(255,255,255,0.08);
}

/* ===== CONTACT EXTRAS ===== */
.whatsapp-box {
  padding: 1.25rem 1.35rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.whatsapp-box h5 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-box {
  padding: 1.15rem 1.35rem;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--color-text-secondary);
  line-height: 1.65;
}
.contact-map-embed iframe {
  display: block;
  width: 100%;
  min-height: 280px;
}
.contact-map-card a,
.site-footer .footer-links a,
.site-main a[href^="tel:"],
.site-main a[href^="mailto:"] {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ===== CONTACT ===== */
.contact-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
}
.alert { padding: 1rem; border-radius: 12px; margin-bottom: 1rem; display: none; align-items: center; gap: 0.5rem; }
.alert.show { display: flex; }
.submit-btn {
  border-radius: 50px;
  padding: 1rem;
  width: 100%;
}

/* ===== RESPONSIVE — Site-wide ===== */
img, video, iframe { max-width: 100%; }
.contact-map-embed iframe { height: 380px; }

@media (max-width: 991px) {
  :root {
    --bs-gutter-x: 2rem;
  }
  .why-grid { grid-template-columns: 1fr; }
  .hero-luxury-content { padding: 5.5rem 0 3.5rem; }
  .section-padding { padding: 4rem 0; }
  .page-hero { padding: 3rem 0 2.5rem; }
  .nav-cta-group .btn-call span,
  .nav-cta-group .btn-wa-nav span { display: none; }
  .brand-logo-img { height: 48px; max-width: 160px; }
  .brand-logo-img--footer { height: 60px; }
  .vehicle-glass-features { grid-template-columns: repeat(2, 1fr); }
  .local-contact-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .local-contact-strip__item { width: 100%; }
  .outstation-block { padding: 1.35rem !important; }
  .page-brand-banner { padding: 1.1rem 0; }
  .page-brand-banner__inner { gap: 0.5rem 0.65rem; padding-inline: 0.25rem; }
  .seat-filter-bar__copy,
  .seat-filter-bar__all { white-space: normal; }
  .mobile-menu-drawer {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
}

@media (max-width: 767px) {
  :root {
    --bs-gutter-x: 2rem;
  }
  .section-padding { padding: 3.25rem 0; }
  .page-hero { padding: 2.5rem 0 2rem; }
  .page-hero-text { font-size: 0.95rem; }
  .page-breadcrumb { font-size: 0.82rem; flex-wrap: wrap; }
  .trust-stats-section { margin-top: 0; }
  .trust-stats-grid { padding: 1.5rem 1rem; }
  .vehicle-card-media { height: 200px; }
  .vehicle-glass-features { grid-template-columns: repeat(2, 1fr); gap: 0.45rem; }
  .vehicle-feature-text strong { font-size: 0.68rem; }
  .vehicle-btn { font-size: 0.78rem; padding: 0.65rem 0.35rem; }
  .vehicle-card-actions { grid-template-columns: 1fr 1fr; }
  .cta-premium { padding: 2.5rem 1.25rem; }
  .cta-premium h2 { font-size: clamp(1.45rem, 5vw, 2rem); }
  .coming-soon-card { padding: 2.25rem 1.25rem; margin-inline: 0; }
  .coming-soon-actions,
  .responsive-cta-group,
  .cta-btn-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .coming-soon-actions .btn-lg,
  .responsive-cta-group .btn-lg,
  .cta-btn-group .btn-cta-call,
  .cta-btn-group .btn-cta-wa,
  .cta-btn-group .btn-cta-book {
    width: 100%;
    justify-content: center;
  }
  .hero-taxi-wrap { padding-top: 5rem; }
  .page-home .hero-taxi-banner .container.hero-taxi-wrap {
    padding-left: max(1.5rem, env(safe-area-inset-left, 0px) + 1.25rem);
    padding-right: max(1.5rem, env(safe-area-inset-right, 0px) + 1.25rem);
  }
  .hero-taxi-booking--glass { padding: 1.15rem 1.1rem; }
  .animate-fade-up,
  .animate-zoom-in { animation-duration: 0.55s; }
  .animate-on-scroll { transform: translate3d(0, 14px, 0); transition-duration: 0.4s; }
  .google-reviews-track { transition-duration: 0.35s; }
  .hero-taxi-title { font-size: clamp(1.65rem, 7vw, 2.25rem); }
  .hero-taxi-lead { font-size: 0.92rem; }
  .hero-taxi-badge { font-size: 0.72rem; max-width: 100%; }
  .hero-taxi-services { gap: 0.45rem; }
  .hero-taxi-chip { font-size: 0.78rem; padding: 0.38rem 0.75rem; }
  .hero-taxi-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }
  .hero-taxi-cta .btn-hero-call,
  .hero-taxi-cta .btn-hero-wa,
  .hero-taxi-cta .btn-hero-seats {
    width: 100%;
    justify-content: center;
  }
  .btn-hero-call strong { font-size: 0.85rem; }
  .hero-taxi-booking-wrap::before { inset: 0; }
  .hero-taxi-marquee { font-size: 0.72rem; }
  .footer-text { font-size: 0.88rem; }
  .footer-bottom { padding-left: 1rem; padding-right: 1rem; }
  .footer-seo-links { line-height: 1.8; }
  .footer-trust-badges { gap: 0.4rem; }
  .footer-trust-badge { font-size: 0.72rem; }
  .contact-map-embed iframe { height: 260px; }
  .contact-map-card { padding: 1.25rem !important; }
  .seat-filter-bar { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .seat-filter-bar__all { margin-left: 0; width: 100%; text-align: center; }
  .seat-filter-bar__chips { justify-content: flex-start; }
  .partner-card span { font-size: 0.78rem; line-height: 1.35; }
  .service-list-item { font-size: 0.88rem; }
  .premium-card { padding: 1.35rem; }
  .mobile-menu-action-btn { min-width: 0; }
}

@media (max-width: 575px) {
  :root {
    --bs-gutter-x: 1.75rem;
  }
  .section-header.center .section-subtitle { padding-inline: 0.25rem; }
  .vehicle-card-actions { grid-template-columns: 1fr; }
  .hero-taxi-highlight-card { padding: 0.75rem 0.85rem; }
  .hero-taxi-highlight-icon { width: 38px; height: 38px; font-size: 0.9rem; }
  .local-service-card { padding: 1rem; gap: 0.75rem; }
  .local-service-card__icon { width: 42px; height: 42px; font-size: 1.1rem; }
  .page-brand-banner__word { font-size: clamp(0.72rem, 3.2vw, 0.95rem); }
}

@media (max-width: 380px) {
  :root {
    --bs-gutter-x: 1.5rem;
  }
  .brand-logo-img { height: 42px; max-width: 130px; }
  .mobile-menu-header { padding: 0.9rem 1rem; }
  .mobile-menu-action-btn { font-size: 0.76rem; padding: 0.55rem 0.45rem; }
  .mobile-menu-item { padding: 0.9rem 1rem; font-size: 0.92rem; }
  .hero-taxi-badge-live { font-size: 0.65rem; }
  .btn-hero-call strong { font-size: 0.78rem; }
}

/* ===== DARK MODE — Premium Travel Theme ===== */
[data-theme="dark"] {
  color-scheme: dark;

  --color-primary: #071426;
  --color-secondary: #0F172A;
  --color-accent: #F59E0B;
  --color-accent-hover: #FBBF24;
  --color-accent-soft: rgba(245, 158, 11, 0.15);
  --color-accent-glow: rgba(245, 158, 11, 0.32);
  --color-bg: #071426;
  --color-card: #111827;
  --color-text: #FFFFFF;
  --color-text-secondary: #D1D5DB;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(245, 158, 11, 0.28);
  --color-surface: #0F172A;
  --color-glass: rgba(17, 24, 39, 0.9);
  --color-input-border: #374151;
  --color-input-bg: #1F2937;
  --color-on-accent: #071426;
  --heading-color: #FFFFFF;
  --card-heading: #FFFFFF;
  --nav-bg: #071426;
  --nav-glass: rgba(7, 20, 38, 0.95);
  --nav-dropdown-bg: #0F172A;
  --nav-border: rgba(245, 158, 11, 0.12);
  --glass-border: rgba(255, 255, 255, 0.1);
  --footer-bg-start: #071426;
  --footer-bg-end: #030712;
  --hero-overlay: linear-gradient(115deg, rgba(7,20,38,0.96) 0%, rgba(15,23,42,0.88) 50%, rgba(7,20,38,0.78) 100%);
  --vehicle-media-bg: linear-gradient(160deg, #1F2937 0%, #111827 100%);
  --vehicle-features-bg: rgba(15, 23, 42, 0.88);
  --shadow-color: 0, 0, 0;
  --cta-gradient: linear-gradient(135deg, #071426 0%, #0F172A 100%);
}

[data-theme="dark"] .text-muted {
  color: var(--color-text-secondary) !important;
}

[data-theme="dark"] .trust-stat-item .num {
  color: var(--accent);
}

[data-theme="dark"] .vehicle-btn-wa {
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%) !important;
  border-color: #25D366 !important;
  color: #128C41 !important;
}
[data-theme="dark"] .vehicle-btn-wa:hover {
  background: linear-gradient(180deg, #34d86a 0%, #25d366 50%, #1da851 100%) !important;
  color: #fff !important;
}

[data-theme="dark"] .hero-booking-glass .form-control::placeholder,
[data-theme="dark"] .quote-field .form-control::placeholder {
  color: #9CA3AF;
}

[data-theme="dark"] .hero-taxi-booking--glass {
  background: linear-gradient(145deg, rgba(17,24,39,0.55) 0%, rgba(17,24,39,0.35) 100%);
  border-color: rgba(245,158,11,0.22);
}
[data-theme="dark"] .hero-taxi-booking--glass .hero-taxi-field .form-control,
[data-theme="dark"] .hero-taxi-booking--glass .hero-taxi-field .form-select {
  background: rgba(31,41,55,0.92);
  color: #fff;
  border-color: rgba(255,255,255,0.12);
}

[data-theme="dark"] .bg-light {
  background: var(--color-surface) !important;
}

[data-theme="dark"] .mobile-menu-drawer {
  background: var(--color-card);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .mobile-menu-logo {
  background: #0B1F3A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .mobile-menu-header,
[data-theme="dark"] .mobile-menu-footer {
  background: var(--color-card);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .mobile-menu-item {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .mobile-menu-item:hover,
[data-theme="dark"] .mobile-menu-item.is-active,
[data-theme="dark"] .mobile-menu-group.is-active > .mobile-menu-toggle {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

[data-theme="dark"] .mobile-menu-item-icon,
[data-theme="dark"] .mobile-menu-touch-icon {
  color: var(--color-accent);
}

[data-theme="dark"] .mobile-menu-close {
  background: var(--color-surface);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

[data-theme="dark"] .mobile-menu-sub {
  background: rgba(15, 23, 42, 0.65);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .mobile-menu-sub a {
  color: var(--color-text-secondary);
}

[data-theme="dark"] .mobile-menu-sub a:hover {
  color: var(--color-accent);
  background: rgba(245, 158, 11, 0.08);
}

[data-theme="dark"] .mobile-menu-touch-link {
  color: var(--color-text-secondary);
}

[data-theme="dark"] .mobile-menu-touch-link:hover {
  color: #fff;
}

[data-theme="dark"] .mobile-menu-actions {
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .mobile-menu-theme-btn {
  background: var(--color-surface);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* ===== SEO — FAQ & OFF-PAGE ===== */
.seo-onpage-section {
  border-top: 1px solid var(--color-border);
}
.seo-onpage-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow);
}
.seo-onpage-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.25rem;
  line-height: 1.35;
}
.seo-onpage-text {
  font-family: var(--font-body);
  color: var(--color-text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.seo-onpage-text:last-child { margin-bottom: 0; }
.seo-onpage-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.seo-onpage-text a:hover { text-decoration: underline; }
.seo-faq-accordion .seo-faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--color-card);
  box-shadow: var(--shadow);
}
.seo-faq-accordion .accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--heading-color);
  background: var(--color-card);
  box-shadow: none !important;
}
.seo-faq-accordion .accordion-button:not(.collapsed) {
  color: var(--accent);
  background: var(--accent-soft);
}
.seo-faq-accordion .accordion-body {
  font-family: var(--font-body);
  color: var(--color-text-secondary);
  line-height: 1.75;
}
.footer-seo-links a {
  color: var(--footer-link);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-seo-links a:hover { color: var(--accent); }
.contact-map-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-map-embed {
  border: 1px solid var(--color-border);
  min-height: 380px;
}
.contact-map-embed iframe { display: block; }
