/* ===========================
   CAB SURAT - Premium Styles
   Colors: Navy Blue #1B2B5E, Charcoal #2D2D2D, White #FFFFFF
   Accent: Gold #F5A623
=========================== */

:root {
  --navy: #1B2B5E;
  --navy-dark: #0F1A3E;
  --navy-light: #2A3F7E;
  --charcoal: #2D2D2D;
  --charcoal-light: #444444;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --gold: #F5A623;
  --gold-dark: #D4891A;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(27,43,94,0.08);
  --shadow-md: 0 4px 20px rgba(27,43,94,0.14);
  --shadow-lg: 0 8px 40px rgba(27,43,94,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.accent { color: var(--gold); }
.section-pad { padding: 5rem 0; }
.center-btn { text-align: center; margin-top: 2.5rem; }

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .tag {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ---- TOPBAR ---- */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  padding: 0.5rem 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.topbar-right a {
  color: var(--gold);
  font-weight: 600;
}
.topbar-right a:hover { color: var(--white); }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--gold);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-img {
  height: 44px;
  width: auto;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links li { position: relative; }
.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
  border-radius: 6px;
}
.nav-links a:hover { color: var(--navy); background: var(--off-white); }
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 0.5rem 1.2rem !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

/* Dropdown */
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  border: 1px solid var(--gray-light);
  overflow: hidden;
  z-index: 100;
}
.has-dropdown:hover .dropdown { display: block; animation: fadeDown 0.2s ease; }
.dropdown li a {
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 0;
  border-bottom: 1px solid var(--gray-light);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--off-white); color: var(--navy); padding-left: 1.5rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11,18,42,0.95) 0%, rgba(27,43,94,0.85) 50%, rgba(27,43,94,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hero-text { color: var(--white); }
.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.2);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 800;
}
.hero-text p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 2rem;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat span {
  font-size: 0.78rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Booking Card */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.booking-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ---- BOOKING FORM ---- */
.booking-form .form-group {
  margin-bottom: 1rem;
}
.booking-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.booking-form input,
.booking-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  transition: var(--transition);
}
.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,43,94,0.1);
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.trip-type-btns {
  display: flex;
  gap: 0.5rem;
}
.trip-btn {
  flex: 1;
  text-align: center;
  padding: 0.6rem;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.trip-btn.active, .trip-btn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.trip-btn input { display: none; }
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.75rem;
}
.btn-full { width: 100%; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.35); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.btn-link:hover { color: var(--gold); }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  width: 100%;
  justify-content: center;
}
.btn-whatsapp:hover { background: #20b858; transform: translateY(-2px); }

/* ---- SERVICES ---- */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  padding-bottom: 1.5rem;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card .service-icon {
  font-size: 2rem;
  padding: 1.5rem 1.5rem 0;
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin: 0.75rem 0;
}
.service-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.2rem;
  padding: 0 1.5rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  padding: 0 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.service-card .btn-link { padding: 0 1.5rem; }

/* ---- FLEET ---- */
.fleet { background: var(--white); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.fleet-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gray-light);
  transition: var(--transition);
  position: relative;
}
.fleet-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); }
.fleet-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
.fleet-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.fleet-info { padding: 1.5rem; }
.fleet-info h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.fleet-info p { color: var(--gray); font-size: 0.85rem; margin-bottom: 1rem; }
.fleet-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.fleet-features span {
  background: var(--off-white);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
}
.fleet-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}
.popular-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- ROUTES ---- */
.routes { background: var(--navy); }
.routes .section-header h2 { color: var(--white); }
.routes .section-header p { color: rgba(255,255,255,0.65); }
.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.route-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
  display: block;
}
.route-card:hover {
  background: rgba(245,166,35,0.15);
  border-color: var(--gold);
  transform: translateY(-4px);
  color: var(--white);
}
.route-from, .route-to { font-weight: 700; font-size: 0.95rem; }
.route-from { color: rgba(255,255,255,0.8); }
.route-arrow { color: var(--gold); font-size: 1.2rem; margin: 0.25rem 0; }
.route-to { color: var(--white); font-size: 1.05rem; }
.route-meta {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.75rem 0 0.5rem;
  font-size: 0.75rem;
  opacity: 0.7;
}
.route-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
}
.routes .btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}
.routes .btn-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ---- WHY US ---- */
.why-us { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-img { position: relative; }
.why-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.why-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.why-badge-float strong { display: block; font-size: 1.6rem; font-weight: 800; line-height: 1; }
.why-badge-float span { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; }
.why-content .tag { /* same as section-header .tag */ display: inline-block; background: rgba(245,166,35,0.12); color: var(--gold-dark); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 50px; margin-bottom: 0.75rem; }
.why-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.why-content > p { color: var(--gray); margin-bottom: 2rem; }
.why-points { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.why-point { display: flex; gap: 1rem; align-items: flex-start; }
.check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
  margin-top: 0.1rem;
}
.why-point strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 0.2rem; }
.why-point p { color: var(--gray); font-size: 0.85rem; margin: 0; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.stars { font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-card p { color: var(--charcoal-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.testi-author strong { display: block; color: var(--navy); font-size: 0.9rem; }
.testi-author span { font-size: 0.78rem; color: var(--gray); }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-btns .btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.cta-btns .btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* ---- FOOTER ---- */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.8); }
.footer-top { padding: 4rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  gap: 2.5rem;
}
.footer-brand .logo-text { color: var(--white); font-size: 1.4rem; }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 1rem 0;
  opacity: 0.75;
}
.footer-contact p, .footer-contact a { font-size: 0.85rem; margin-bottom: 0.4rem; }
.footer-contact a { color: var(--gold); }
.footer-contact a:hover { color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { font-size: 0.85rem; opacity: 0.75; }
.footer-col ul a:hover { opacity: 1; color: var(--gold); padding-left: 4px; }
.footer-book .btn-primary { width: 100%; margin-bottom: 0; }
.footer-book p { font-size: 0.85rem; opacity: 0.75; margin-bottom: 0.75rem; }
.footer-map {
  width: 100%;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1rem;
}
.footer-bottom {
  background: var(--navy-dark);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ---- STICKY BTNS ---- */
.sticky-call {
  position: fixed;
  bottom: 80px; right: 1.5rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  display: none;
}
.sticky-whatsapp {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  background: #25D366;
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 999;
  transition: var(--transition);
}
.sticky-whatsapp:hover { transform: scale(1.1); }

/* ---- ROUTE PAGE ---- */
.route-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 4rem 0 3rem;
}
.route-hero-content { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; text-align: center; margin-bottom: 2rem; }
.route-hero-city h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); }
.route-hero-city span { font-size: 0.85rem; opacity: 0.7; display: block; }
.route-hero-arrow { font-size: 2.5rem; color: var(--gold); }
.route-stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.route-stat { text-align: center; }
.route-stat strong { display: block; font-size: 1.4rem; color: var(--gold); font-weight: 800; }
.route-stat span { font-size: 0.78rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.08em; }
.route-content { padding: 4rem 0; }
.route-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.route-pricing-table { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; margin-bottom: 2rem; }
.pricing-header { background: var(--navy); color: var(--white); padding: 1.2rem 1.5rem; }
.pricing-header h3 { font-size: 1rem; font-weight: 700; }
.pricing-row { display: grid; grid-template-columns: 1fr 1fr 1fr; padding: 1rem 1.5rem; border-bottom: 1px solid var(--gray-light); font-size: 0.88rem; }
.pricing-row:last-child { border-bottom: none; }
.pricing-row.header { background: var(--off-white); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; color: var(--gray); }
.pricing-price { color: var(--navy); font-weight: 700; }
.route-info-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 1.5rem; }
.route-info-card h3 { color: var(--navy); font-size: 1.05rem; font-weight: 700; margin-bottom: 1rem; }
.info-list li { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.6rem; font-size: 0.88rem; color: var(--charcoal-light); }
.info-list li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; }
.route-map { border-radius: var(--radius-lg); overflow: hidden; height: 350px; box-shadow: var(--shadow-sm); margin-bottom: 2rem; }
.booking-sidebar { position: sticky; top: 80px; }
.booking-sidebar .booking-card { box-shadow: var(--shadow-md); border: 2px solid var(--gray-light); }

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-family: var(--font-display); color: var(--navy); font-size: 2rem; margin-bottom: 1rem; }
.contact-info p { color: var(--gray); margin-bottom: 2rem; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; background: var(--navy); color: var(--white); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--navy); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contact-item p, .contact-item a { color: var(--charcoal); font-size: 0.95rem; }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid var(--gray-light); }
.contact-form-card h3 { font-family: var(--font-display); color: var(--navy); font-size: 1.4rem; margin-bottom: 1.5rem; }
.contact-map { height: 300px; border-radius: var(--radius-lg); overflow: hidden; margin-top: 2rem; box-shadow: var(--shadow-sm); }

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.page-header h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.75rem; }
.page-header p { opacity: 0.75; max-width: 600px; margin: 0 auto 1rem; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; font-size: 0.82rem; opacity: 0.65; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ---- ANIMATIONS ---- */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease forwards; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .routes-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; }
  .booking-card { max-width: 500px; margin: 0 auto; }
  .hero-text { text-align: center; }
  .hero-text p { margin: 0 auto 2rem; }
  .hero-stats { justify-content: center; }
  .route-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
    z-index: 998;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--gray-light); }
  .nav-links a { padding: 0.9rem 0; font-size: 1rem; }
  .has-dropdown .dropdown { position: static; display: none; box-shadow: none; border: none; background: var(--off-white); border-radius: var(--radius); margin: 0.5rem 0; }
  .has-dropdown.open .dropdown { display: block; }
  .services-grid, .fleet-grid, .testi-grid { grid-template-columns: 1fr; }
  .fleet-card.featured { transform: none; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-badge-float { right: 0; bottom: -1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 2rem 1.5rem; }
  .route-hero-content { grid-template-columns: 1fr; }
  .route-hero-arrow { font-size: 1.5rem; transform: rotate(90deg); }
  .route-stats-bar { flex-wrap: wrap; gap: 1.5rem; }
  .sticky-call { display: flex; }
  .section-pad { padding: 3rem 0; }
}
@media (max-width: 480px) {
  .routes-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .route-stats-bar { flex-direction: column; align-items: center; gap: 1rem; }
}
