﻿/* =====================================================
   SUNDARI TRAVELS — Premium Dark Gold Theme
   ===================================================== */

/* ---- CSS Variables ---- */
:root {
  --bg-primary:    #0B0D12;
  --bg-secondary:  #151820;
  --bg-card:       #151820;
  --bg-footer:     #080A0E;
  --gold:          #F5B800;
  --gold-light:    #FFD45A;
  --gold-dim:      rgba(245,184,0,0.15);
  --gold-border:   rgba(245,184,0,0.20);
  --silver:        #D9DCE2;
  --silver-dim:    #AEB3BD;
  --white:         #FFFFFF;
  --text:          #FFFFFF;
  --text-muted:    #AEB3BD;
  --text-light:    #6b7280;
  --border:        rgba(245,184,0,0.20);
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:     0 8px 48px rgba(0,0,0,0.5);
  --shadow-gold:   0 0 20px rgba(245,184,0,0.15);
  --radius:        10px;
  --radius-lg:     16px;
  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
  --font-heading:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Manrope', system-ui, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ---- Typography ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before {
  content: '— ';
  color: var(--gold);
  opacity: 0.6;
}
.section-label.center { display: block; text-align: center; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title.center { text-align: center; }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.section-subtitle.center { text-align: center; margin-left: auto; margin-right: auto; }
.req { color: var(--gold); }
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 32px;
}
.gold-line.left { margin-left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #0B0D12;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,184,0,0.3);
}
.btn-outline-silver {
  background: transparent;
  color: var(--white);
  border-color: rgba(217,220,226,0.5);
}
.btn-outline-silver:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
/* Legacy button classes mapped to new */
.btn-primary { background: var(--gold); color: #0B0D12; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,184,0,0.3); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(217,220,226,0.5); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-teal { background: var(--gold); color: #0B0D12; border-color: var(--gold); }
.btn-teal:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 15px 36px; font-size: 0.95rem; }
.w-full { width: 100%; justify-content: center; }
.mt-btn { margin-top: 32px; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #080A0E;
  border-bottom: 1px solid rgba(245,184,0,0.20);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 70px;
  display: flex;
  align-items: center;
  height: 108px;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 40px;
  text-decoration: none;
  background: transparent;
}
.logo-img {
  width: auto;
  height: 108px;
  max-width: 220px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  background: transparent;
}
.navbar.scrolled .logo-img { height: 78px; }
.logo-text-fallback { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 6px;
  color: #D9DCE2;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover {
  color: #F5B800;
  background: rgba(245,184,0,0.08);
}
.nav-link.active {
  color: #F5B800 !important;
  background: rgba(245,184,0,0.10);
  font-weight: 700;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F5B800;
  color: #080A0E;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  width: 130px;
  height: 48px;
  border-radius: 11px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-book-btn:hover { background: #FFD45A; transform: translateY(-1px); }
.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(245,184,0,0.55);
  border-radius: 50%;
  color: #F5B800;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.nav-phone-btn:hover { background: rgba(245,184,0,0.12); border-color: #F5B800; }
.nav-cta-btn { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-left: 16px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: #0d0f14;
  border-left: 1px solid var(--gold-border);
  z-index: 999;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  padding: 96px 24px 40px;
}
.mobile-nav.open { right: 0; }
.mobile-nav-link {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--silver);
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,184,0,0.08);
  transition: var(--transition);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.mobile-nav-link:hover { color: var(--gold); padding-left: 8px; }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.mobile-action-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 700; text-decoration: none;
}
.call-btn { background: var(--gold); color: #0B0D12; }
.whatsapp-btn { background: #25D366; color: var(--white); }
.mobile-book-btn {
  display: block; text-align: center; margin-top: 16px;
  padding: 14px; border: 2px solid var(--gold);
  color: var(--gold); border-radius: 8px; font-weight: 700;
  transition: var(--transition); text-decoration: none;
}
.mobile-book-btn:hover { background: var(--gold); color: #0B0D12; }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 998; opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 82vh;
  max-height: 1000px;
  display: flex;
  flex-direction: column;
  background: #080A0E;
  overflow: hidden;
  padding-top: 108px;
}

/* car.png — right side, blended background */
.hero-car-bg {
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.15) 12%,
    rgba(0,0,0,0.6) 30%,
    black 55%,
    black 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.15) 12%,
    rgba(0,0,0,0.6) 30%,
    black 55%,
    black 100%
  );
}

/* Overlay — left side strong fade, bottom fade */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      #080A0E 0%,
      #080A0E 34%,
      rgba(8,10,14,0.80) 48%,
      rgba(8,10,14,0.18) 64%,
      transparent 78%
    ),
    linear-gradient(180deg,
      rgba(8,10,14,0.20) 0%,
      transparent 25%,
      transparent 65%,
      rgba(8,10,14,0.55) 100%
    );
  pointer-events: none;
}

/* Two-column layout */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
  flex: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 44px 70px 155px;
  min-height: calc(82vh - 108px);
}
.hero-right-spacer { display: block; }

/* Hero content */
.hero-content { max-width: 540px; }

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(245,184,0,0.40);
  background: rgba(245,184,0,0.08);
  color: #F5B800;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-badge i { font-size: 0.68rem; }

/* Heading */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.0;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hero-title-gold {
  color: #F5B800;
  font-style: italic;
  display: block;
}

/* Description */
.hero-desc {
  font-size: 1rem;
  color: #B8BDC7;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 480px;
}

/* Trust line */
.hero-trust-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #AEB3BD;
  text-transform: uppercase;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.htl-item { display: inline-flex; align-items: center; gap: 6px; }
.htl-item i { color: #F5B800; font-size: 0.78rem; }
.htl-dot { color: #F5B800; font-size: 1.1rem; line-height: 1; }

/* CTA Buttons */
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  height: 56px;
  padding: 0 26px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
  border: 2px solid transparent;
}
.hbtn-gold { background: #F5B800; color: #080A0E; }
.hbtn-gold:hover { background: #FFD45A; transform: translateY(-2px); }
.hbtn-outline { background: transparent; color: #ffffff; border-color: rgba(217,220,226,0.55); }
.hbtn-outline:hover { border-color: #F5B800; color: #F5B800; transform: translateY(-2px); }
.hbtn-wa { background: #25D366; color: #ffffff; border-color: #25D366; }
.hbtn-wa:hover { background: #1da851; transform: translateY(-2px); }

/* Trust bar */
.hero-trust-bar {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 72%;
  max-width: 940px;
}
.htb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11,13,18,0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(245,184,0,0.22);
  border-radius: 16px;
  padding: 18px 32px;
  gap: 8px;
}
.htb-item {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 1;
  min-width: 0;
}
.htb-icon {
  width: 40px; height: 40px;
  background: rgba(245,184,0,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #F5B800;
  font-size: 1rem;
}
.htb-text { display: flex; flex-direction: column; gap: 2px; }
.htb-text strong { font-size: 0.85rem; font-weight: 700; color: #ffffff; white-space: nowrap; }
.htb-text span { font-size: 0.72rem; color: #AEB3BD; white-space: nowrap; }
.htb-sep { width: 1px; height: 36px; background: rgba(245,184,0,0.18); flex-shrink: 0; }

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: rgba(255,255,255,0.32);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-scroll i {
  color: rgba(245,184,0,0.5);
  font-size: 0.7rem;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Keep old class refs — no longer rendered */
.hero-bg, .hero-bg-dark, .hero-road-wrap, .road-svg,
.hero-visual-col, .hero-subtitle, .hero-service-line,
.hero-title-accent, .tsl-item, .tsl-dot,
.trust-bar-inner, .tbi, .tbi-icon, .tbi-info, .tbi-sep,
.hero-scroll-hint, .scroll-arrow, .br-desktop { display: none; }

/* ---- Booking Section ---- */
.booking-section { padding: 100px 0; background: var(--bg-secondary); }
.booking-wrapper { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.booking-form-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; overflow: visible; }
.form-group { display: flex; flex-direction: column; gap: 6px; position: relative; overflow: visible; }
.form-group-full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.78rem; font-weight: 700;
  color: var(--silver); letter-spacing: 0.06em; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  transition: var(--transition);
  outline: none;
  color-scheme: dark;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group select option { background: var(--bg-secondary); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(245,184,0,0.05);
  box-shadow: 0 0 0 3px rgba(245,184,0,0.10);
}
.form-group input.error,
.form-group select.error { border-color: #e53e3e; }
.form-error { font-size: 0.75rem; color: #e53e3e; font-weight: 600; min-height: 16px; }
.trip-type-group { display: flex; gap: 20px; padding: 10px 0; }
.radio-label {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; font-size: 0.9rem; font-weight: 600; color: var(--silver);
}
.radio-label input[type="radio"] { display: none; }
.radio-custom {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  position: relative;
  transition: var(--transition); flex-shrink: 0;
}
.radio-label input[type="radio"]:checked + .radio-custom { border-color: var(--gold); }
.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.form-notice {
  background: rgba(245,184,0,0.06);
  border: 1px solid rgba(245,184,0,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 24px;
}
.form-notice i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-wa-book {
  flex: 1; padding: 14px 20px;
  background: #25D366; color: var(--white);
  border: none; border-radius: 8px;
  font-size: 0.9rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition); min-width: 160px; cursor: pointer;
}
.btn-wa-book:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.btn-call-book {
  white-space: nowrap; padding: 14px 20px;
  background: var(--gold); color: #0B0D12;
  border-radius: 8px; font-size: 0.9rem; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-call-book:hover { background: var(--gold-light); transform: translateY(-2px); }
.booking-info { display: flex; flex-direction: column; gap: 20px; }
.booking-info-card {
  background: var(--bg-primary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.booking-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 20px;
}
.booking-why { display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; }
.booking-why li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-muted); }
.booking-why li i { color: var(--gold); flex-shrink: 0; }
.booking-contact-quick { display: flex; flex-direction: column; gap: 10px; }
.quick-contact-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px; border-radius: 8px;
  font-weight: 700; font-size: 0.88rem;
  background: rgba(245,184,0,0.08);
  color: var(--gold); border: 1px solid var(--gold-border);
  transition: var(--transition);
}
.quick-contact-btn:hover { background: var(--gold); color: #0B0D12; }
.quick-contact-btn.whatsapp { background: rgba(37,211,102,0.1); color: #4ade80; border-color: rgba(37,211,102,0.2); }
.quick-contact-btn.whatsapp:hover { background: #25D366; color: var(--white); }
.vehicle-cards-mini { display: flex; flex-direction: column; gap: 10px; }
.vehicle-mini-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-primary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 14px 18px;
  transition: var(--transition);
}
.vehicle-mini-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.vehicle-mini-card i { font-size: 1.4rem; color: var(--gold); }
.vehicle-mini-card strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--white); }
.vehicle-mini-card span { font-size: 0.78rem; color: var(--text-muted); }

/* ---- About Section ---- */
.about-section { padding: 100px 0; background: var(--bg-primary); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-placeholder-img {
  width: 100%; height: 480px;
  background: linear-gradient(145deg, #0d0f14 0%, #151820 60%, #1a1500 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.about-placeholder-img i { font-size: 4.5rem; color: var(--gold); opacity: 0.8; }
.about-placeholder-img span {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 600;
  color: var(--silver); letter-spacing: 0.05em;
}
.about-img-card {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
}
.about-img-card i { color: var(--gold); font-size: 1.2rem; }
.about-img-card span { font-size: 0.85rem; font-weight: 700; color: var(--white); }
.about-desc { font-size: 0.98rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.about-mv-card {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 2px solid var(--gold);
  border-top: 1px solid var(--gold-border);
  border-right: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.about-mv-card i { color: var(--gold); font-size: 1.2rem; margin-bottom: 8px; }
.about-mv-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.about-mv-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }
.about-highlights { display: flex; flex-wrap: wrap; gap: 10px; }
.about-highlight-item {
  display: flex; align-items: center; gap: 8px;
  background: rgba(245,184,0,0.06);
  border: 1px solid var(--gold-border);
  border-radius: 8px; padding: 9px 16px;
  font-size: 0.84rem; font-weight: 700; color: var(--silver);
  transition: var(--transition);
}
.about-highlight-item:hover { border-color: var(--gold); color: var(--gold); }
.about-highlight-item i { color: var(--gold); }

/* ---- Services Section ---- */
.services-section { padding: 100px 0; background: var(--bg-secondary); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(245,184,0,0.12);
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(245,184,0,0.12);
}
.service-icon-wrap {
  position: absolute; top: 16px; left: 16px;
  width: 42px; height: 42px;
  background: var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.service-icon-wrap i { color: #0B0D12; font-size: 1rem; }
.service-img { height: 180px; overflow: hidden; position: relative; }
.service-img-placeholder {
  height: 180px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: #0d0f14;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img-placeholder { transform: scale(1.03); }
.service-img-placeholder i { font-size: 2.8rem; color: var(--gold); }
.service-img-placeholder span { font-size: 0.82rem; font-weight: 700; color: var(--silver); letter-spacing: 0.06em; }
.service-body { padding: 22px; }
.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.service-body p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.service-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700;
  color: var(--gold); transition: var(--transition);
}
.service-btn:hover { gap: 10px; }

/* ---- Why Section ---- */
.why-section { padding: 100px 0; background: var(--bg-primary); }
.why-inner { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
.why-content { position: sticky; top: 100px; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-feature-item {
  display: flex; gap: 16px; padding: 24px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,184,0,0.10);
  transition: var(--transition);
}
.why-feature-item:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(245,184,0,0.08);
  transform: translateY(-2px);
}
.why-icon {
  width: 48px; height: 48px;
  background: rgba(245,184,0,0.10);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-feature-item:hover .why-icon { background: var(--gold); }
.why-icon i { color: var(--gold); font-size: 1.1rem; }
.why-feature-item:hover .why-icon i { color: #0B0D12; }
.why-text h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.why-text p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* ---- Tariff Section ---- */
.tariff-section { padding: 100px 0; background: var(--bg-secondary); }
.tariff-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 44px; }
.tariff-tab {
  padding: 11px 36px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 700;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--text-muted);
  transition: var(--transition); cursor: pointer;
  font-family: var(--font-body);
}
.tariff-tab.active, .tariff-tab:hover {
  background: var(--gold); border-color: var(--gold);
  color: #0B0D12;
}
.tariff-content { display: none; }
.tariff-content.active { display: block; }
.tariff-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 20px; }
.tariff-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(245,184,0,0.12);
  transition: var(--transition); position: relative;
}
.tariff-card:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(245,184,0,0.10); transform: translateY(-3px); }
.tariff-card.featured { border-color: var(--gold); box-shadow: 0 8px 40px rgba(245,184,0,0.15); transform: scale(1.03); }
.tariff-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0B0D12;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 50px;
}
.tariff-vehicle-icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 10px; }
.tariff-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 4px;
}
.tariff-capacity { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 18px; }
.tariff-rate {
  font-size: 2.4rem; font-weight: 800; color: var(--gold);
  line-height: 1; margin-bottom: 24px; font-family: var(--font-body);
}
.tariff-rate span:last-child { font-size: 0.95rem; color: var(--text-muted); font-weight: 400; }
.tariff-features { text-align: left; margin-bottom: 24px; display: flex; flex-direction: column; gap: 9px; }
.tariff-features li { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--text-muted); }
.tariff-features li i { color: var(--gold); flex-shrink: 0; }
.tariff-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(245,184,0,0.05);
  border: 1px solid rgba(245,184,0,0.15);
  border-radius: 10px; padding: 13px 16px;
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.5;
}
.tariff-note i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ---- Popular Routes ---- */
.routes-section { padding: 100px 0; background: var(--bg-primary); }
.routes-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.route-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,184,0,0.12);
  overflow: hidden; transition: var(--transition);
}
.route-card:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(245,184,0,0.10); transform: translateY(-3px); }
.route-card-inner { padding: 22px; }
.route-icon {
  width: 42px; height: 42px;
  background: rgba(245,184,0,0.08);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.route-icon i { color: var(--gold); font-size: 1rem; }
.route-journey { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.route-from, .route-to {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700; color: var(--white);
}
.route-line { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }
.route-meta { display: flex; gap: 12px; margin-bottom: 12px; }
.route-meta span { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.route-meta i { color: var(--gold); }
.route-vehicles { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 16px; }
.rv {
  font-size: 0.68rem; font-weight: 700;
  padding: 3px 9px;
  background: rgba(245,184,0,0.06);
  border-radius: 50px; color: var(--text-muted);
  border: 1px solid var(--gold-border);
}
.route-book-btn {
  width: 100%; padding: 10px;
  background: rgba(245,184,0,0.08);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 8px; font-size: 0.82rem; font-weight: 700;
  transition: var(--transition); font-family: var(--font-body); cursor: pointer;
}
.route-book-btn:hover { background: var(--gold); color: #0B0D12; border-color: var(--gold); }

/* ---- How It Works ---- */
.how-section { padding: 100px 0; background: var(--bg-secondary); }
.steps-timeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px 32px; position: relative; margin-top: 16px; }
.step-item { display: flex; flex-direction: column; align-items: flex-start; position: relative; }
.step-number {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 700; color: var(--gold); opacity: 0.15;
  line-height: 1; margin-bottom: -14px; z-index: 0;
}
.step-connector { display: none; }
.step-content {
  background: var(--bg-primary);
  border-radius: var(--radius-lg); padding: 24px; width: 100%;
  border: 1px solid rgba(245,184,0,0.10);
  transition: var(--transition); z-index: 1;
}
.step-item:hover .step-content { border-color: var(--gold); box-shadow: 0 8px 30px rgba(245,184,0,0.08); transform: translateY(-2px); }
.step-icon {
  width: 48px; height: 48px;
  background: rgba(245,184,0,0.08);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step-icon i { color: var(--gold); font-size: 1.1rem; }
.step-item:hover .step-icon { background: var(--gold); }
.step-item:hover .step-icon i { color: #0B0D12; }
.step-content h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 7px;
}
.step-content p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* ---- CTA Banner ---- */
.cta-banner { position: relative; padding: 110px 0; overflow: hidden; text-align: center; }
.cta-banner-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d0f14 0%, #151820 50%, #1a1500 100%);
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,184,0,0.06) 0%, transparent 70%);
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; color: var(--white); margin-bottom: 18px;
}
.cta-title span { color: var(--gold); }
.cta-subtitle {
  font-size: 1rem; color: var(--silver);
  max-width: 560px; margin: 0 auto 36px; line-height: 1.75;
}
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---- Contact Section ---- */
.contact-section { padding: 100px 0; background: var(--bg-primary); }
.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--gold-border);
  margin-bottom: 20px;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(245,184,0,0.08);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon i { color: var(--gold); font-size: 1rem; }
.contact-info-icon.whatsapp-icon { background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.2); }
.contact-info-icon.whatsapp-icon i { color: #4ade80; }
.contact-info-item h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-item a, .contact-info-item p { font-size: 0.92rem; color: var(--white); font-weight: 600; }
.contact-info-item a:hover { color: var(--gold); }
.contact-info-item small { font-size: 0.75rem; color: var(--text-light); }
.contact-cta-quick { display: flex; gap: 10px; }
.contact-cta-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px; border-radius: 8px;
  font-weight: 700; font-size: 0.88rem; transition: var(--transition);
}
.contact-cta-btn.call { background: var(--gold); color: #0B0D12; }
.contact-cta-btn.call:hover { background: var(--gold-light); transform: translateY(-2px); }
.contact-cta-btn.wa { background: #25D366; color: var(--white); }
.contact-cta-btn.wa:hover { background: #1da851; transform: translateY(-2px); }
.contact-form-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--gold-border);
}
.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 24px;
}

/* ---- Footer ---- */
.footer { background: var(--bg-footer); color: var(--text-muted); border-top: 1px solid var(--gold-border); }
.footer-top { padding: 72px 0 52px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { height: 72px; width: auto; object-fit: contain; margin-bottom: 16px; border-radius: 8px; background: #0B0D12; padding: 4px 8px; display: block; }
.footer-logo-text-fallback { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--gold); margin-bottom: 16px; display: block; }
.footer-tagline { font-size: 0.88rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 24px; max-width: 280px; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-link { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600; color: var(--gold); transition: var(--transition); }
.footer-contact-link:hover { color: var(--gold-light); }
.footer-contact-link.wa { color: #4ade80; }
.footer-contact-link.wa:hover { color: #25D366; }
.footer-col h4 { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.84rem; color: var(--silver); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(245,184,0,0.08); padding: 20px 0; }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  font-size: 0.8rem; color: var(--text-light);
}
.footer-bottom-credit { font-size: 0.75rem; color: rgba(245,184,0,0.4); letter-spacing: 0.08em; }

/* ---- Floating Buttons ---- */
.floating-btns { position: fixed; bottom: 32px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 900; }
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4); transition: var(--transition); position: relative;
}
.float-btn:hover { transform: scale(1.12); }
.float-wa { background: #25D366; color: var(--white); }
.float-wa:hover { background: #1da851; }
.float-call { background: var(--gold); color: #0B0D12; }
.float-call:hover { background: var(--gold-light); }
.float-tooltip {
  position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%);
  background: var(--bg-secondary); color: var(--white);
  border: 1px solid var(--gold-border);
  font-size: 0.75rem; font-weight: 700; white-space: nowrap;
  padding: 5px 11px; border-radius: 6px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* ---- Mobile Sticky Bar ---- */
.mobile-sticky-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 900; background: #0d0f14;
  border-top: 1px solid var(--gold-border);
  grid-template-columns: repeat(3, 1fr);
}
.msb-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 11px 8px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-muted); transition: var(--transition);
}
.msb-btn i { font-size: 1.1rem; }
.msb-btn:hover, .msb-btn:active { background: rgba(245,184,0,0.06); }
.msb-call { color: var(--gold); }
.msb-wa { color: #4ade80; }
.msb-book { background: var(--gold); color: #0B0D12; font-weight: 800; }

/* ---- Toast ---- */
.toast {
  position: fixed; bottom: 90px; right: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  color: var(--white); padding: 13px 20px; border-radius: 10px;
  font-size: 0.88rem; font-weight: 600;
  box-shadow: var(--shadow-lg); z-index: 9999;
  transform: translateY(20px); opacity: 0; pointer-events: none;
  transition: all 0.3s ease; max-width: 280px;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { border-left: 3px solid var(--gold); }
.toast.error { border-left: 3px solid #e53e3e; }

/* ---- Animations (no opacity:0 on sections) ---- */
.fade-up { opacity: 1; transform: none; }
.fade-up.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 1; transform: none; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 1; transform: none; }
.reveal-right.visible { opacity: 1; transform: none; }

/* ---- Autocomplete ---- */
.autocomplete-wrap { position: relative; overflow: visible; }
.autocomplete-wrap .ac-icon {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 0.85rem; pointer-events: none; z-index: 1;
}
.autocomplete-wrap input { padding-left: 36px !important; width: 100%; }
.autocomplete-list {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 9999; max-height: 220px; overflow-y: auto;
  display: none; padding: 6px 0;
}
.autocomplete-list.show { display: block; }
.autocomplete-list li {
  padding: 10px 14px; font-size: 0.88rem; color: var(--text);
  cursor: pointer; display: flex; align-items: center; gap: 10px;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.autocomplete-list li:last-child { border-bottom: none; }
.autocomplete-list li:hover, .autocomplete-list li.active { background: rgba(245,184,0,0.08); }
.autocomplete-list li i { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; align-self: flex-start; margin-top: 3px; }
.ac-area { display: block; font-size: 0.88rem; font-weight: 600; color: var(--white); line-height: 1.3; }
.ac-city { display: block; font-size: 0.73rem; color: var(--text-muted); line-height: 1.3; margin-top: 1px; }
.autocomplete-list li > span { display: flex; flex-direction: column; }
.autocomplete-list::-webkit-scrollbar { width: 4px; }
.autocomplete-list::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .nav-container { padding: 0 40px; }
  .hero-inner { padding: 44px 40px 155px; }
  .hero-car-bg { width: 62%; }
  .htb-inner { padding: 16px 22px; gap: 6px; }
  .htb-text strong { font-size: 0.8rem; }
  .htb-text span { font-size: 0.68rem; }
}
@media (max-width: 1024px) {
  .nav-container { padding: 0 32px; }
  .hero-inner { padding: 40px 32px 150px; grid-template-columns: 52% 48%; }
  .hero-car-bg { width: 65%; }
  .hero-trust-bar { width: 82%; }
  .booking-wrapper { grid-template-columns: 1fr; }
  .booking-info { flex-direction: row; flex-wrap: wrap; }
  .booking-info-card, .vehicle-cards-mini { flex: 1; min-width: 260px; }
  .vehicle-cards-mini { flex-direction: row; flex-wrap: wrap; }
  .vehicle-mini-card { flex: 1; min-width: 110px; }
  .routes-grid { grid-template-columns: repeat(2,1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-content { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-timeline { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions .nav-book-btn { width: 110px; font-size: 0.82rem; }
  .hamburger { display: flex; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 36px 28px 150px;
  }
  .hero-right-spacer { display: none; }
  .hero-car-bg { width: 100%; opacity: 0.38; }
  .hero-car-img {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 70%, transparent 100%);
  }
  .hero-overlay {
    background: rgba(8,10,14,0.60);
  }
  .hero-content { max-width: 560px; }
  .hero-trust-bar { width: calc(100% - 56px); }
  .htb-inner { flex-wrap: wrap; gap: 10px; padding: 14px 18px; }
  .htb-item { min-width: 42%; }
  .htb-sep:nth-child(4) { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-placeholder-img { height: 300px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .tariff-grid { grid-template-columns: 1fr; gap: 20px; }
  .tariff-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-container { padding: 0 20px; }
  .logo-img { height: 72px; width: auto; }
  .navbar.scrolled .logo-img { height: 60px; }
  .nav-book-btn { width: 100px !important; font-size: 0.78rem !important; height: 40px !important; border-radius: 8px !important; }
  .nav-phone-btn { width: 36px !important; height: 36px !important; font-size: 0.8rem !important; }
  .section-title { font-size: 1.85rem; }
  .hero { min-height: 88vh; }
  .hero-inner { padding: 24px 20px 145px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-ctas { gap: 10px; }
  .hbtn { height: 50px; font-size: 0.85rem; padding: 0 18px; }
  .hero-trust-bar { width: calc(100% - 32px); bottom: 16px; }
  .htb-inner { padding: 12px 14px; gap: 8px; }
  .htb-sep { display: none; }
  .htb-item { min-width: 40%; }
  .htb-icon { width: 34px; height: 34px; font-size: 0.85rem; }
  .htb-text strong { font-size: 0.76rem; }
  .htb-text span { font-size: 0.64rem; }
  .hero-scroll { display: none; }
  .booking-form-card { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; }
  .btn-call-book { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
  .steps-timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-btns { display: none; }
  .mobile-sticky-bar { display: grid; }
  body { padding-bottom: 66px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
  .about-mv-grid { grid-template-columns: 1fr; }
  .contact-cta-quick { flex-direction: column; }
  .about-section, .services-section, .why-section, .tariff-section,
  .routes-section, .how-section, .contact-section, .booking-section { padding: 64px 0; }
  .cta-banner { padding: 64px 0; }
  .footer-top { padding: 48px 0 36px; }
}
@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .hero-inner { padding: 18px 16px 140px; }
  .hero-title { font-size: 2rem; }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ---- Focus ---- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .road-svg animate,
  .road-svg animateMotion { animation-play-state: paused; }
}

/* ---- Route Calculator Section ---- */
.route-calc-section { padding: 100px 0; background: var(--bg-primary); }

.rc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Vehicle tabs */
.rc-vehicle-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.rc-vtab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 10px;
  border-radius: 10px;
  border: 1.5px solid var(--gold-border);
  background: var(--bg-secondary);
  color: var(--silver-dim);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.rc-vtab i { font-size: 1.2rem; color: var(--gold); margin-bottom: 2px; }
.rc-vtab span { font-size: 0.72rem; color: var(--gold); font-weight: 600; }
.rc-vtab.active {
  background: rgba(245,184,0,0.12);
  border-color: var(--gold);
  color: var(--white);
}
.rc-vtab:hover { border-color: var(--gold); background: rgba(245,184,0,0.08); }

/* Trip type */
.rc-trip-type {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}
.rc-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--silver);
}
.rc-radio input[type="radio"] { accent-color: var(--gold); width: 16px; height: 16px; }

/* Location inputs */
.rc-input-group {
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 6px 12px;
  margin-bottom: 16px;
}
.rc-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}
.rc-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.rc-dot-green { background: #22c55e; }
.rc-dot-red { background: #ef4444; }
.rc-connector {
  width: 1.5px;
  height: 14px;
  background: var(--gold-border);
  margin-left: 5px;
}
.rc-ac { flex: 1; position: relative; }
.rc-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.92rem;
  font-family: var(--font-body);
  padding: 4px 0;
}
.rc-input::placeholder { color: var(--text-light); }

/* Calculate button */
.rc-calc-btn {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: #0B0D12;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  margin-bottom: 20px;
}
.rc-calc-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.rc-calc-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Results */
.rc-results { display: flex; flex-direction: column; gap: 14px; }

.rc-dist-time {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.rc-dt-box {
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 14px 18px;
}
.rc-dt-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.rc-dt-val {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-body);
}

.rc-fare-grid { display: none; } /* replaced by rc-fare-breakdown */

/* ---- Fare Breakdown (reference style) ---- */
.rc-fare-breakdown {
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rc-fare-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rc-fare-row:last-of-type { border-bottom: none; }
.rc-fare-lbl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--silver-dim);
  font-weight: 500;
}
.rc-fare-lbl i { color: var(--gold); font-size: 0.85rem; width: 16px; }
.rc-fare-lbl small { font-size: 0.75rem; color: var(--text-muted); margin-left: 4px; }
.rc-fare-amt {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-body);
}
.rc-fare-divider {
  height: 1px;
  background: rgba(245,184,0,0.20);
  margin: 8px 0;
}
.rc-fare-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 6px;
}
.rc-fare-total-lbl {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.rc-fare-total-val {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-body);
}
.rc-fare-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
  padding: 8px 0;
}
.rc-fare-note i { color: #F5B800; flex-shrink: 0; margin-top: 2px; font-size: 0.82rem; }

/* NOT INCLUDED tags */
.rc-not-included { margin-top: 14px; }
.rc-ni-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.rc-ni-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rc-ni-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #f97316;
  background: rgba(249,115,22,0.10);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 20px;
  padding: 5px 12px;
}
.rc-ni-tags span i { font-size: 0.7rem; }

/* Additional message */
.rc-add-msg-wrap { margin-top: 18px; }
.rc-add-msg-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.rc-add-msg {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
}
.rc-add-msg::placeholder { color: var(--text-light); }
.rc-add-msg:focus { border-color: var(--gold); background: rgba(245,184,0,0.04); }

/* Book button */
.rc-book-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 24px;
  background: #25D366;
  color: #fff;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 16px;
  width: 100%;
  font-family: var(--font-body);
}
.rc-book-btn i { font-size: 1.3rem; }
.rc-book-btn:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }

/* Map side */
.rc-right {
  position: sticky;
  top: 110px;
}
.rc-map-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.rc-map-header i { color: var(--gold); }
.rc-map-header small { color: var(--text-muted); font-weight: 400; font-size: 0.78rem; margin-left: 4px; }
.rc-map-badge {
  margin-left: auto;
  font-size: 0.7rem;
  background: rgba(245,184,0,0.10);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 20px;
}
.rc-map {
  width: 100%;
  height: 460px;
  border-radius: 14px;
  border: 1px solid var(--gold-border);
  overflow: hidden;
  background: #1a1c20;
}

/* Leaflet overrides for dark theme */
.rc-map .leaflet-tile { filter: brightness(0.85) saturate(0.9); }

@media (max-width: 900px) {
  .rc-wrapper { grid-template-columns: 1fr; }
  .rc-right { position: static; }
  .rc-map { height: 320px; }
  .rc-fare-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .rc-dist-time { grid-template-columns: 1fr; }
  .rc-fare-grid { grid-template-columns: 1fr 1fr; }
  .rc-vtab { min-width: 80px; }
  .rc-map { height: 260px; }
}

/* ---- Booking Form Fare Calculator ---- */
.btn-calc-fare {
  width: 100%;
  padding: 14px;
  background: rgba(245,184,0,0.10);
  color: var(--gold);
  border: 1.5px dashed rgba(245,184,0,0.45);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-calc-fare:hover { background: rgba(245,184,0,0.18); border-color: var(--gold); }
.btn-calc-fare:disabled { opacity: 0.6; cursor: not-allowed; }

.bf-fare-result {
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bf-dist-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bf-dt {
  background: var(--bg-primary);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bf-dt-lbl { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.bf-dt-val { font-size: 1.25rem; font-weight: 800; color: var(--white); }

.bf-fare-rows { display: flex; flex-direction: column; gap: 2px; }
.bf-fare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 0.9rem;
  color: var(--silver-dim);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bf-fare-row span:last-child { font-weight: 700; color: var(--white); }
.bf-fare-divider { height: 1px; background: rgba(245,184,0,0.20); margin: 6px 0; }
.bf-fare-total { padding: 10px 0 4px; }
.bf-fare-total span:first-child { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.bf-fare-total span:last-child { font-size: 1.5rem; font-weight: 800; color: var(--gold); }

.bf-note { font-size: 0.76rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.bf-note i { color: var(--gold); }

.bf-map-wrap { border-radius: 10px; overflow: hidden; border: 1px solid var(--gold-border); }
.bf-map { height: 280px; width: 100%; background: #1a1c20; }

/* ---- Google Places Autocomplete Dark Theme ---- */
.pac-container {
  background: #151820 !important;
  border: 1px solid rgba(245,184,0,0.30) !important;
  border-radius: 10px !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5) !important;
  font-family: 'Manrope', sans-serif !important;
  margin-top: 4px !important;
  z-index: 99999 !important;
}
.pac-item {
  background: #151820 !important;
  color: #D9DCE2 !important;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
  padding: 10px 14px !important;
  font-size: 0.88rem !important;
  cursor: pointer !important;
}
.pac-item:hover, .pac-item-selected {
  background: rgba(245,184,0,0.08) !important;
}
.pac-item-query {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
}
.pac-matched { color: #F5B800 !important; font-weight: 700 !important; }
.pac-icon { display: none !important; }
.pac-logo::after { display: none !important; }
.pac-logo { padding: 4px 10px !important; }
