/* =====================================================
   YATRI VAHAAN — Premium Mobile-First CSS v3.0
   Font: Plus Jakarta Sans (Google Fonts)
   Design: Premium App-Like UI
   ===================================================== */

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

/* ===================== CSS VARIABLES ===================== */
:root {
  /* Brand Colors */
  --primary: #D4AF37;           /* Premium Gold */
  --primary-dark: #B89020;      /* Darker Gold Hover */
  --primary-light: #FDF9EC;     /* Gold Tint BG */
  --secondary: #0A192F;         /* Deep Navy */
  --secondary-mid: #0F2544;     /* Mid Navy */
  --secondary-light: #162D52;   /* Light Navy */
  --whatsapp: #25D366;          /* WhatsApp Green */
  --whatsapp-dark: #128C7E;     /* WhatsApp Dark */
  
  /* Text Colors */
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  /* Backgrounds */
  --bg-color: #F8FAFC;
  --surface: #FFFFFF;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  
  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.14);
  --shadow-premium: 0 24px 60px -12px rgba(10,25,47,0.22);
  --shadow-gold: 0 8px 25px rgba(212,175,55,0.35);
  --shadow-navy: 0 8px 25px rgba(10,25,47,0.30);
  
  /* Border Radius */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  
  /* Spacing */
  --section-pad: clamp(3rem, 6vw, 6rem);
  --page-pad: clamp(1rem, 5vw, 5%);
  
  /* Font sizes — auto-scales on all screens */
  --fs-xs: clamp(0.7rem, 2vw, 0.8rem);
  --fs-sm: clamp(0.8rem, 2.2vw, 0.9rem);
  --fs-base: clamp(0.9rem, 2.5vw, 1rem);
  --fs-md: clamp(1rem, 2.8vw, 1.1rem);
  --fs-lg: clamp(1.1rem, 3vw, 1.25rem);
  --fs-xl: clamp(1.25rem, 3.5vw, 1.5rem);
  --fs-2xl: clamp(1.5rem, 4vw, 2rem);
  --fs-3xl: clamp(1.8rem, 5vw, 2.5rem);
  --fs-hero: clamp(2.2rem, 6vw, 3.8rem);
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===================== UTILITY ===================== */
.hidden { display: none !important; }
.fade-in { animation: fadeIn 0.4s ease-out both; }
.fade-in-up { animation: fadeInUp 0.5s ease-out both; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== STICKY HEADER ===================== */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--secondary);
  padding: 0 var(--page-pad);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 20px rgba(10,25,47,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-logo img {
  height: 42px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-call-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.header-call-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.header-wa-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--whatsapp);
  color: white;
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.header-wa-btn:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.desktop-nav a {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: var(--fs-sm);
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  transition: 0.2s;
}
.desktop-nav a:hover, .desktop-nav a.active {
  color: var(--primary);
  background: rgba(255,255,255,0.05);
}

/* ===================== HERO SECTION ===================== */
.hero-section-wrapper {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #031428 0%, var(--secondary) 50%, #0F2D5C 100%);
  overflow: hidden;
}

/* Subtle animated background dots */
.hero-section-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(212,175,55,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(15,45,92,0.5) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  color: white;
  padding: 3rem var(--page-pad);
  max-width: 580px;
  z-index: 10;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--primary);
  font-weight: 700;
  font-size: var(--fs-xs);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  color: white;
}

.hero-title .gold-text {
  color: var(--primary);
  display: block;
}

.hero-subtitle {
  font-size: var(--fs-md);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}

.hero-feature-pill {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  font-weight: 700;
  font-size: var(--fs-base);
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
}
.btn-hero-call:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.btn-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: white;
  font-weight: 700;
  font-size: var(--fs-base);
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37,211,102,0.35);
}
.btn-hero-wa:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.45);
}

/* ===================== BOOKING FORM ===================== */
.booking-container {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 430px;
  z-index: 20;
}

.booking-sheet {
  width: 100%;
  background: rgba(10, 25, 47, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-premium);
  max-height: 82vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,0.3) transparent;
}

.booking-sheet h3 { color: white; }
.booking-sheet p { color: rgba(255,255,255,0.6); }

/* Input styles inside dark booking form */
.input-wrapper {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.1);
  transition: 0.2s;
}
.input-wrapper:focus-within {
  border-color: var(--primary);
  background: rgba(212,175,55,0.05);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.premium-input { border: none; }
.premium-input:focus-within {
  border: none;
  box-shadow: none;
}

.input-field {
  flex: 1;
  border: none;
  background: transparent;
  font-size: var(--fs-base);
  font-weight: 600;
  color: white;
  outline: none;
  font-family: inherit;
  min-width: 0;
}
.input-field::placeholder {
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* Tabs inside booking */
.tab-btn {
  flex: 1 1 0;
  min-width: 0;
  padding: 9px 6px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 700;
  font-size: var(--fs-xs);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  transition: 0.25s;
  font-family: inherit;
}
.tab-btn.active {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: var(--fs-base);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--secondary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-primary:disabled {
  background: #CBD5E0;
  color: #6B7280;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--secondary);
}
.btn-wa {
  background: var(--whatsapp);
  color: white;
}
.btn-wa:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}
.btn-glow {
  box-shadow: var(--shadow-gold);
}
.btn-glow:active { transform: scale(0.97); }

/* ===================== FLOATING ACTION BUTTONS ===================== */
.fab-container {
  position: fixed;
  bottom: 24px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9990;
}

.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}
.fab-btn:hover {
  transform: scale(1.1) translateY(-2px);
}
.fab-btn-call {
  background: var(--secondary);
  color: var(--primary);
}
.fab-btn-wa {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}
.fab-btn i {
  width: 24px;
  height: 24px;
}

/* ===================== MOBILE BOTTOM NAV ===================== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--secondary);
  border-top: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 -8px 30px rgba(10,25,47,0.4);
  z-index: 9999;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 62px;
  padding: 0 8px;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 600;
  width: 58px;
  height: 100%;
  gap: 3px;
  transition: 0.25s;
}
.mobile-nav-item i {
  width: 22px;
  height: 22px;
  transition: 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.mobile-nav-item.active {
  color: var(--primary);
}
.mobile-nav-item.active i {
  transform: scale(1.15) translateY(-2px);
}
.mobile-nav-item.center-action {
  position: relative;
  top: -14px;
}
.mobile-nav-item.center-action .action-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-gold);
  color: var(--secondary);
  transition: 0.25s;
}
.mobile-nav-item.center-action .action-btn i {
  width: 24px;
  height: 24px;
  margin: 0;
}

/* ===================== SECTION STYLES ===================== */
.section-heading {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-heading .section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-heading h2 {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.section-heading p {
  color: var(--text-muted);
  font-size: var(--fs-md);
  max-width: 580px;
  margin: 0 auto;
}

/* ===================== SERVICES GRID ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ===================== PREMIUM CARDS ===================== */
.premium-card {
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: white;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}
.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

/* ===================== VEHICLE LIST ===================== */
.vehicle-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.vehicle-img-wrapper {
  width: 75px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}
.vehicle-real-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vehicle-info { flex: 1; min-width: 0; }
.vehicle-name {
  font-weight: 800;
  font-size: var(--fs-md);
  color: white;
}
.vehicle-desc {
  color: rgba(255,255,255,0.55);
  font-size: var(--fs-xs);
  margin-top: 2px;
  font-weight: 500;
}
.vehicle-price {
  font-weight: 800;
  font-size: var(--fs-xl);
  color: var(--primary);
  white-space: nowrap;
}

/* ===================== FARE TABLE SECTION ===================== */
.fare-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.fare-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: var(--fs-sm);
}
.fare-table th {
  background: var(--secondary);
  color: white;
  padding: 14px 18px;
  font-weight: 700;
  text-align: left;
  font-size: var(--fs-xs);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.fare-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.fare-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.fare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  font-weight: 500;
  color: var(--text-main);
}
.fare-table tr:last-child td { border-bottom: none; }
.fare-table tr:hover td { background: var(--primary-light); }
.fare-table .price-cell {
  font-weight: 800;
  color: var(--secondary);
  font-size: var(--fs-md);
}
.fare-table .badge-pill {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* ===================== TRUST CARDS (WHY CHOOSE US) ===================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
.trust-card {
  background: white;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  text-align: center;
  transition: 0.3s;
  border: 1.5px solid var(--border);
}
.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.trust-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.2rem;
}
.trust-card p[style*="font-weight: 800"] { color: var(--secondary); }
.trust-card p { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.5; }
@media (max-width: 1024px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ===================== HOW IT WORKS TIMELINE ===================== */
.timeline {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1rem, 3vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.timeline-step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 10px; }
.step-icon {
  width: 70px;
  height: 70px;
  background: white;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
  color: var(--primary);
  box-shadow: 0 0 0 8px var(--primary-light);
}
.timeline-step p[style*="font-weight: 800"] { color: var(--secondary); font-size: var(--fs-md); margin-bottom: 8px; }
.timeline-step p { font-size: var(--fs-sm); color: var(--text-muted); }
@media (max-width: 600px) {
  .timeline { 
    flex-direction: column; 
    align-items: stretch; 
    gap: 2rem; 
    padding: 10px 10px 10px 30px;
    overflow-x: visible;
    margin: 0;
  }
  .timeline::before { 
    display: block;
    top: 25px;
    bottom: 25px;
    left: 30px; /* Matches padding-left to align with the step edge */
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(to bottom, var(--primary) 0%, rgba(212,175,55,0.2) 100%);
  }
  .timeline-step { 
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem 1.2rem 1.5rem 2.5rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
  }
  .step-icon {
    position: absolute;
    left: -25px;
    top: 20px;
    width: 50px;
    height: 50px;
    margin: 0;
    background: linear-gradient(135deg, var(--primary), #F59E0B);
    color: white;
    border: 4px solid white;
    box-shadow: 0 8px 15px rgba(212, 175, 55, 0.3);
    z-index: 2;
  }
  .step-icon i {
    width: 22px !important;
    height: 22px !important;
    stroke: white !important;
    color: white !important;
  }
  .timeline-step p[style*="font-weight: 800"] {
    font-size: 1.15rem !important;
    margin-bottom: 6px !important;
    color: #0F172A !important;
  }
  .timeline-step p:not([style*="font-weight: 800"]) {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
}

/* ===================== TOUR PACKAGE CARDS ===================== */
.tour-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) { .tour-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tour-cards-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

.tour-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: 0.3s;
}
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.tour-card-img {
  width: 100%;
  height: clamp(100px, 18vw, 160px);
  object-fit: cover;
}
.tour-card-body { padding: clamp(0.8rem, 2vw, 1.2rem); }
.tour-card-nights {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 8px;
}
.tour-card-title {
  font-size: var(--fs-base);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 6px;
  line-height: 1.3;
}
.tour-card-price {
  font-size: var(--fs-lg);
  font-weight: 900;
  color: var(--primary-dark);
}
.tour-card-price span {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-muted);
}

/* ===================== STATS COUNTER SECTION ===================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: var(--fs-3xl);
  font-weight: 900;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
}

/* ===================== ROUTES SLIDER ===================== */
.routes-slider {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding: 0.5rem 5px 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.routes-slider::-webkit-scrollbar { display: none; }
.route-card {
  min-width: clamp(240px, 40vw, 300px);
  scroll-snap-align: start;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: 0.3s;
  flex-shrink: 0;
}
.route-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.route-img { width: 100%; height: 170px; object-fit: cover; }
.route-content { padding: 1.2rem; }
.route-title { font-size: var(--fs-md); font-weight: 700; color: var(--secondary); margin-bottom: 5px; }
.route-price { color: var(--primary-dark); font-weight: 800; font-size: var(--fs-md); margin-bottom: 12px; }

/* ===================== TESTIMONIALS ===================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .testimonial-grid { 
    display: flex; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    gap: 15px; 
    padding-bottom: 1rem;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -5%;
    margin-right: -5%;
  }
  .testimonial-grid::-webkit-scrollbar { display: none; }
  .testimonial-card { 
    min-width: 85vw !important; 
    scroll-snap-align: center; 
    padding: 1.5rem !important; 
  }
  .testimonial-text { font-size: 1rem !important; line-height: 1.6 !important; margin-bottom: 20px !important; }
  .user-avatar { width: 50px !important; height: 50px !important; font-size: 1.1rem !important; }
  .user-name { font-size: 1.05rem !important; }
  .user-desc { font-size: 0.85rem !important; }
  .testimonial-card::after { font-size: 8rem !important; top: -15px !important; right: 15px !important; }
}

.testimonial-card {
  position: relative;
  background: white;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.testimonial-card::after {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 10rem;
  color: var(--primary);
  opacity: 0.05;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.stars { color: #F59E0B; display: flex; gap: 5px; margin-bottom: 16px; position: relative; z-index: 1; }
.stars i { width: 20px; height: 20px; filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3)); }
.testimonial-text {
  font-size: 1.05rem;
  color: #334155;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.user-info { display: flex; align-items: center; gap: 15px; position: relative; z-index: 1; border-top: 1px solid #F1F5F9; padding-top: 16px; }
.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #F59E0B);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
  border: 3px solid white;
  flex-shrink: 0;
}
.user-name { font-weight: 800; color: #0F172A; font-size: 1.05rem; margin-bottom: 3px; }
.user-desc { color: #64748B; font-size: 0.85rem; margin: 0; }

/* ===================== FAQ ACCORDION ===================== */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: 0.3s;
}
.faq-question {
  padding: clamp(1rem, 2.5vw, 1.4rem) 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--secondary);
  font-size: var(--fs-base);
  gap: 12px;
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: var(--fs-sm);
}
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow-xs); }
.faq-item.active .faq-answer { padding: 0 1.5rem 1.4rem; max-height: 500px; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--primary); }

/* ===================== CTA BANNER ===================== */
@keyframes gradient3D {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.cta-banner {
  background: linear-gradient(-45deg, #031428, var(--secondary), #0F2D5C, #1a4480);
  background-size: 300% 300%;
  animation: gradient3D 10s ease infinite;
  padding: clamp(3rem, 6vw, 5rem) var(--page-pad);
  text-align: center;
  color: white;
  border-radius: var(--radius-xl);
  margin: 2rem var(--page-pad);
  box-shadow: var(--shadow-navy);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: var(--fs-3xl);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.cta-banner p {
  font-size: var(--fs-md);
  opacity: 0.85;
  margin-bottom: 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.cta-banner a { position: relative; z-index: 2; }

/* ===================== WHATSAPP SECTION ===================== */
.wa-banner {
  background: linear-gradient(135deg, #075e54, #25D366);
  padding: clamp(2rem, 4vw, 3rem) var(--page-pad);
  border-radius: var(--radius-xl);
  margin: 2rem var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  color: white;
  box-shadow: 0 12px 40px rgba(37,211,102,0.25);
}
.wa-banner-text h3 {
  font-size: var(--fs-2xl);
  font-weight: 800;
  margin-bottom: 8px;
}
.wa-banner-text p {
  font-size: var(--fs-md);
  opacity: 0.85;
}
@media (max-width: 600px) {
  .wa-banner { justify-content: center; text-align: center; }
}

/* ===================== FOOTER ===================== */
.premium-footer {
  background: var(--secondary);
  color: white;
  padding: clamp(2.5rem, 5vw, 4rem) var(--page-pad) 1rem;
  margin-top: clamp(2rem, 4vw, 4rem);
  border-radius: 32px 32px 0 0;
  font-family: inherit;
}
.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: 3rem;
}
.footer-col h3 {
  color: var(--primary);
  font-size: var(--fs-md);
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.footer-col p {
  color: #94A3B8;
  line-height: 1.7;
  font-size: var(--fs-sm);
  margin-bottom: 0.8rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: 0.2s;
  display: inline-block;
}
.footer-links a:hover { color: var(--primary); transform: translateX(5px); }
.footer-link { color: #CBD5E1; text-decoration: none; }
.footer-link:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
  color: #64748B;
  font-size: var(--fs-xs);
}

/* ===================== ANIMATED LOGO ===================== */
.animated-logo {
  display: inline-flex;
  border-radius: var(--radius-pill);
  animation: logoPulse 3s infinite;
}
@keyframes logoPulse {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

/* ===================== MODAL ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,25,47,0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.25s ease;
}
.modal-content {
  background: white;
  width: min(90vw, 500px);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-premium);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeInUp 0.3s ease;
}
.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--border-light);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: 0.2s;
  z-index: 10;
}
.modal-close-btn:hover { background: var(--border); color: var(--text-main); }

/* ===================== SUBPAGE STYLES ===================== */
.app-bg { background: var(--bg-color); }
.page-hero {
  background: linear-gradient(135deg, #031428, var(--secondary));
  padding: clamp(5rem, 10vw, 8rem) var(--page-pad) clamp(3rem, 6vw, 5rem);
  text-align: center;
  color: white;
  border-radius: 0 0 40px 40px;
  box-shadow: var(--shadow-navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(212,175,55,0.08) 0%, transparent 60%);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  position: relative;
}
.page-hero p { color: var(--primary); font-weight: 600; position: relative; }
.page-content {
  background: white;
  max-width: 900px;
  margin: -50px auto 4rem;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.2rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  color: #334155;
  line-height: 1.8;
  position: relative;
  z-index: 10;
}
.page-content h2 { color: var(--secondary); font-size: var(--fs-2xl); font-weight: 800; margin: 2rem 0 1rem; }
.page-content h3 { color: var(--secondary); font-size: var(--fs-xl); margin: 1.5rem 0 0.5rem; }
.page-content p { font-size: var(--fs-base); margin-bottom: 1.2rem; }
.page-content ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.page-content ul li { margin-bottom: 0.7rem; }

/* ===================== FLEET SECTION ===================== */
#fleet-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 2rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5px;
  scrollbar-width: none;
}
#fleet-tabs::-webkit-scrollbar {
  display: none;
}
.fleet-tab-btn {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 2px solid transparent;
  background: var(--border-light);
  color: var(--text-muted);
  cursor: pointer;
  transition: 0.25s;
  font-family: inherit;
}
.fleet-tab-btn.active {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

/* ===================== GOOGLE AUTOCOMPLETE FIX ===================== */
.pac-container { z-index: 99999 !important; font-family: 'Plus Jakarta Sans', sans-serif !important; }
.pac-item { font-size: var(--fs-sm) !important; padding: 8px 12px !important; }

/* ===================== MOBILE RESPONSIVE ===================== */
@media (max-width: 900px) {
  .booking-container {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    padding: 0 var(--page-pad);
    padding-top: 0;
  }
  .booking-sheet {
    border-radius: var(--radius-lg);
    margin: -20px 0 0;
  }
  .hero-section-wrapper {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding-bottom: 2rem;
  }
  .hero-content {
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .desktop-nav { display: none !important; }
  .hide-mobile { display: none !important; }
  
  .main-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 12px;
    height: 58px;
  }
  .header-actions { display: contents; }
  .header-logo {
    grid-column: 2;
    justify-self: center;
    margin-top: 6px; /* Offset to center it visually */
  }
  .header-call-btn {
    grid-column: 1;
    justify-self: start;
    grid-row: 1;
    padding: 8px 12px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
  .header-wa-btn {
    grid-column: 3;
    justify-self: end;
    grid-row: 1;
    padding: 8px 12px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
  .header-wa-btn span, .header-call-btn span { display: none; }
  
  .mobile-bottom-nav { display: block; }
  
  body { padding-bottom: 68px; }
  
  .fab-container { bottom: 80px; right: 16px; }
  
  .hero-title { letter-spacing: -0.5px; }
  
  .hero-cta-row { flex-direction: column; }
  .btn-hero-call, .btn-hero-wa {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }
  
  .modal-overlay { align-items: flex-end; }
  .modal-content {
    width: 100%;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    max-height: 92vh;
    margin: 0;
    padding: 2.5rem 1.2rem 1.5rem;
  }
  
  #fleet-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  
  .premium-footer { border-radius: 24px 24px 0 0; padding-bottom: 0.5rem; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 1.5rem; text-align: center; }
  .footer-container .footer-col:first-child { grid-column: 1 / -1; text-align: center; }
  .footer-container .footer-col:first-child > div { justify-content: center; }
  .footer-links a { justify-content: center; }
  
  /* Services grid mobile */
  .services-grid .premium-card > div:first-child { height: 110px !important; }
  .services-grid .premium-card > div:last-child { padding: 10px !important; }
  .services-grid .btn { padding: 8px 10px !important; font-size: 0.82rem !important; }
}

@media (max-width: 480px) {

  
  .cta-banner { margin: 1.5rem 12px; border-radius: var(--radius-lg); }
  .wa-banner { margin: 1.5rem 12px; border-radius: var(--radius-lg); }
  
  .booking-sheet { padding: 1.5rem 1rem; }
  
  /* Prevent overflow on very small screens */
  .routes-slider, .vehicle-list { padding-left: 0; padding-right: 0; }

  .fare-table th, .fare-table td { padding: 10px 12px; font-size: 0.78rem; }

  .tour-cards-grid { gap: 8px; }
  .tour-card-body { padding: 0.8rem; }
  .tour-card-title { font-size: 0.82rem; }
}

/* ===================== CONTACT GRID ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1.5px solid var(--border);
  transition: 0.3s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ===================== BLOG CARD ===================== */
.blog-card-generated {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: 0.3s;
}
.blog-card-generated:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-generated h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
  line-height: 1.4;
}
