/* ===========================
   SHREENATHJITAXI - Premium Theme
   Color: Orange #FF6B00 / Dark #1A1A2E
   =========================== */

:root {
  --orange: #FF6B00;
  --orange-dark: #E05E00;
  --orange-light: #FF8C38;
  --dark: #1A1A2E;
  --dark2: #16213E;
  --dark3: #0F3460;
  --white: #ffffff;
  --gray: #f5f5f5;
  --gray2: #eeeeee;
  --text: #333333;
  --text-light: #666666;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 30px rgba(255,107,0,0.25);
  --radius: 12px;
  --radius-sm: 8px;
}

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  padding-bottom: 60px; /* mobile bar */
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

a { text-decoration: none; color: inherit; transition: all 0.3s; }
img { max-width: 100%; }
ul { list-style: none; }

/* ====== TOPBAR ====== */
.topbar {
  background: var(--dark);
  color: #ccc;
  font-size: 0.78rem;
  padding: 8px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-left span { margin-right: 20px; }
.topbar-left span i { color: var(--orange); margin-right: 6px; }
.topbar-right a { color: #ccc; margin-left: 14px; font-size: 0.85rem; }
.topbar-right a:hover { color: var(--orange); }

/* ====== HEADER ====== */
.main-header {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
}
.main-header.scrolled { box-shadow: 0 4px 25px rgba(0,0,0,0.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
}
.logo-main { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--dark); display: block; line-height: 1.1; }
.logo-sub { color: var(--orange); font-weight: 700; font-size: 0.85rem; }

.main-nav ul { display: flex; gap: 5px; align-items: center; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: 6px;
  display: flex; align-items: center; gap: 4px;
}
.main-nav ul li a:hover, .main-nav ul li a.active { color: var(--orange); background: rgba(255,107,0,0.06); }

/* Dropdown */
.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  min-width: 200px;
  padding: 8px 0;
  z-index: 200;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { padding: 10px 18px; font-size: 0.85rem; color: var(--text); }
.dropdown-menu li a:hover { color: var(--orange); background: #fff8f4; }

.btn-call {
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.btn-call:hover { background: var(--orange-dark); color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 26px; height: 2px; background: var(--dark); border-radius: 2px; transition: 0.3s; }

/* ====== HERO ====== */
.hero-slider { position:absolute; inset:0; z-index:0; }
.hero-slide { position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transition:opacity 1.2s ease; }
.hero-slide.active { opacity:1; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(10,25,47,0.82) 0%,rgba(10,25,47,0.65) 60%,rgba(26,26,64,0.78) 100%); z-index:1; }
.hero {
  background: var(--dark);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero .container { position:relative; z-index:2; }
.hero::before { display:none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; position: relative; z-index:2; }
.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-content h1 span { color: var(--orange); }
.hero-content p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-badge {
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(255,107,0,0.4);
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,0,0.5); color:#fff; }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* Booking Form Card */
.booking-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.booking-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 20px; text-align: center; }
.form-tabs { display: flex; gap: 4px; margin-bottom: 20px; background: var(--gray2); border-radius: 8px; padding: 4px; }
.form-tab {
  flex: 1; text-align: center; padding: 8px 12px;
  border-radius: 6px; cursor: pointer;
  font-size: 0.82rem; font-weight: 500; color: var(--text-light);
  transition: all 0.3s;
}
.form-tab.active { background: var(--orange); color: #fff; }
.form-group { margin-bottom: 14px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--text-light); margin-bottom: 5px; display: block; }
.form-group input, .form-group select {
  width: 100%; border: 1.5px solid #e5e5e5; border-radius: var(--radius-sm);
  padding: 11px 14px; font-size: 0.88rem; font-family: inherit;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--orange); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-book {
  width: 100%; background: var(--orange); color: #fff;
  border: none; padding: 14px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: all 0.3s; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-book:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ====== SECTION STYLES ====== */
.section { padding: 70px 0; }
.section-alt { background: var(--gray); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-eyebrow {
  color: var(--orange); font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; display: block;
}
.section-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2rem; color: var(--dark); margin-bottom: 12px; }
.section-title span { color: var(--orange); }
.section-sub { color: var(--text-light); max-width: 550px; margin: 0 auto; line-height: 1.7; }

/* ====== WHY CHOOSE ====== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-bottom-color: var(--orange); }
.why-icon {
  width: 64px; height: 64px;
  background: rgba(255,107,0,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem; color: var(--orange);
  transition: 0.3s;
}
.why-card:hover .why-icon { background: var(--orange); color: #fff; }
.why-card h4 { font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 8px; }
.why-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ====== SERVICES ====== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  background: #fff;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-img {
  height: 180px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--orange);
  position: relative; overflow: hidden;
}
.service-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.service-body { padding: 20px; }
.service-body h3 { font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 8px; }
.service-body p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.service-tag {
  background: rgba(255,107,0,0.08); color: var(--orange);
  padding: 3px 10px; border-radius: 50px; font-size: 0.73rem; font-weight: 500;
}

/* ====== HOW IT WORKS ====== */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.how-card { text-align: center; padding: 20px; }
.how-number {
  width: 56px; height: 56px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 1.2rem;
  margin: 0 auto 16px;
}
.how-card h4 { font-weight: 700; margin-bottom: 8px; font-size: 0.95rem; color: var(--dark); }
.how-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ====== STATS ====== */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item h3 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2.4rem; color: var(--orange); }
.stat-item p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-top: 4px; }

/* ====== ROUTES ====== */
.routes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.route-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border-left: 4px solid var(--orange);
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.route-cities { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.route-cities strong { font-weight: 700; font-size: 0.92rem; color: var(--dark); }
.route-cities i { color: var(--orange); font-size: 0.8rem; }
.route-meta { display: flex; gap: 14px; font-size: 0.78rem; color: var(--text-light); margin-bottom: 12px; }
.route-meta span i { margin-right: 4px; color: var(--orange); }
.route-price { font-size: 0.82rem; }
.route-price .price { font-size: 1.1rem; font-weight: 700; color: var(--orange); }
.route-price span { font-size: 0.75rem; color: var(--text-light); }
.route-book-btn {
  display: block; width: 100%; text-align: center;
  background: var(--orange); color: #fff;
  padding: 9px; border-radius: 8px;
  font-size: 0.82rem; font-weight: 600; margin-top: 12px;
}
.route-book-btn:hover { background: var(--orange-dark); color: #fff; }

/* ====== FLEET ====== */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fleet-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s;
  text-align: center;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.fleet-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  position: relative;
  overflow: hidden;
}
.fleet-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.35) 100%);
}
.fleet-body { padding: 20px; }
.fleet-body h3 { font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 6px; }
.fleet-body p { font-size: 0.8rem; color: var(--text-light); margin-bottom: 14px; }
.fleet-specs { display: flex; justify-content: center; gap: 16px; }
.fleet-spec { font-size: 0.75rem; color: var(--text-light); }
.fleet-spec i { color: var(--orange); margin-right: 4px; }
.fleet-price { background: rgba(255,107,0,0.08); padding: 8px; border-radius: 8px; margin-top: 12px; }
.fleet-price span { font-size: 0.75rem; color: var(--text-light); }
.fleet-price strong { color: var(--orange); font-size: 0.95rem; }

/* ====== TESTIMONIALS ====== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testi-stars { color: #f5a623; font-size: 0.9rem; margin-bottom: 12px; }
.testi-text { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem;
}
.testi-name strong { font-size: 0.88rem; color: var(--dark); font-weight: 600; }
.testi-name span { font-size: 0.75rem; color: var(--text-light); display: block; }

/* ====== CTA BANNER ====== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 60px 0; text-align: center;
}
.cta-banner h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2rem; color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1rem; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-white {
  background: #fff; color: var(--orange);
  padding: 13px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.btn-white:hover { background: var(--dark); color: #fff; }
.btn-dark {
  background: var(--dark); color: #fff;
  padding: 13px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.btn-dark:hover { background: #000; color: #fff; }

/* ====== CITIES ====== */
.cities-cloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.city-tag {
  background: #fff; border: 1.5px solid #e8e8e8;
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.82rem; color: var(--text);
  transition: all 0.3s; cursor: pointer;
}
.city-tag:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,107,0,0.05); }

/* ====== PAGE BANNER ====== */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  padding: 50px 0;
  text-align: center;
}
.page-banner h1 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2rem; color: #fff; margin-bottom: 10px; }
.page-banner p { color: rgba(255,255,255,0.7); }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 14px; font-size: 0.82rem; }
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ====== CONTACT ====== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; border: 1.5px solid #e5e5e5; border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 0.88rem; font-family: inherit; margin-bottom: 14px;
  transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--orange); }
.contact-form textarea { height: 130px; resize: none; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: #fff; border-radius: var(--radius-sm);
  padding: 20px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 16px;
}
.contact-info-icon {
  width: 50px; height: 50px;
  background: rgba(255,107,0,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-card h4 { font-weight: 600; font-size: 0.88rem; color: var(--dark); margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 0.85rem; color: var(--text-light); }
.contact-info-card a:hover { color: var(--orange); }

/* ====== FOOTER ====== */
.footer { background: var(--dark); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.7; margin: 14px 0 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-main { color: #fff; }
.footer-logo .logo-icon { background: var(--orange); }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); margin-right: 8px;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-col h4 { color: #fff; font-weight: 700; font-size: 0.95rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.84rem; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-col ul li a i { margin-right: 6px; font-size: 0.7rem; }
.contact-list li { color: rgba(255,255,255,0.55); font-size: 0.84rem; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.contact-list li i { color: var(--orange); margin-top: 2px; }
.contact-list li a { color: rgba(255,255,255,0.55); }
.contact-list li a:hover { color: var(--orange); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 10px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-top: 14px;
}
.btn-wa:hover { background: #1ebe5d; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom strong { color: var(--orange); }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--orange); }

/* ====== MOBILE BAR ====== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  z-index: 999;
  border-top: 2px solid var(--orange);
}
.mobile-bar a {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8px 4px;
  color: rgba(255,255,255,0.7);
  font-size: 0.65rem; gap: 3px;
}
.mobile-bar a i { font-size: 1.1rem; }
.mobile-bar a:hover { color: var(--orange); }

/* ====== ROUTE DETAIL PAGE ====== */
.route-detail-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark3));
  padding: 50px 0;
}
.route-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.route-title-big { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2rem; color: #fff; margin-bottom: 14px; }
.route-title-big span { color: var(--orange); }
.route-detail-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.route-meta-item { background: rgba(255,255,255,0.08); border-radius: 8px; padding: 10px 16px; }
.route-meta-item i { color: var(--orange); margin-right: 6px; }
.route-meta-item span { color: #fff; font-size: 0.85rem; }
.fare-table { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.fare-table table { width: 100%; border-collapse: collapse; }
.fare-table th { background: var(--orange); color: #fff; padding: 12px 16px; text-align: left; font-size: 0.85rem; }
.fare-table td { padding: 12px 16px; border-bottom: 1px solid #f0f0f0; font-size: 0.85rem; }
.fare-table tr:last-child td { border-bottom: none; }
.fare-table tr:hover td { background: #fff8f4; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  body { padding-bottom: 70px; }
  .topbar { display: none; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,0.1); padding: 16px; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav ul li a { padding: 12px 16px; }
  .dropdown .dropdown-menu { position: static; box-shadow: none; padding-left: 16px; background: #f9f9f9; }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .btn-call { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-content h1 { font-size: 1.8rem; }
  .services-grid, .how-grid, .routes-grid, .fleet-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.5rem; }
  .contact-grid, .route-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
  .mobile-bar { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: row; flex-wrap: nowrap; gap: 8px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { flex: 1; text-align: center; justify-content: center; padding: 12px 8px; font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .hero { padding: 40px 0 50px; }
  .section { padding: 50px 0; }
  .booking-card { padding: 20px 16px; }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity:0; transform: translateY(24px); }
  to { opacity:1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease forwards; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }