/* ═══════════════════════════════════════════════════════════════
   JAMNAGAR TAXI — Main Stylesheet
   Colors: #1E2A56 (Navy) | #FFFFFF (White) | #2D2D2D (Charcoal)
           #E8B84B (Gold accent) | #F5F7FF (Light BG)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy:      #1E2A56;
  --navy-dark: #151E3F;
  --navy-mid:  #253368;
  --white:     #FFFFFF;
  --charcoal:  #2D2D2D;
  --gold:      #E8B84B;
  --gold-dark: #C99A2E;
  --light-bg:  #F5F7FF;
  --gray:      #6B7280;
  --border:    #E5E7EB;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(30,42,86,0.10);
  --shadow-lg: 0 8px 40px rgba(30,42,86,0.15);
  --transition: 0.28s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--charcoal); background: var(--white); line-height: 1.7; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-title { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.section-title span { color: var(--gold); }
.section-sub { color: var(--gray); margin-top: 10px; font-size: 1.05rem; }
.text-center { text-align: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-head); font-weight: 700;
  padding: 14px 32px; border-radius: 50px;
  border: none; cursor: pointer; font-size: 0.95rem;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,184,75,0.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--navy); color: var(--navy);
  font-family: var(--font-head); font-weight: 700;
  padding: 12px 28px; border-radius: 50px; background: transparent;
  cursor: pointer; font-size: 0.95rem; transition: var(--transition);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ── TOPBAR ── */
.topbar { background: var(--navy-dark); color: rgba(255,255,255,0.85); padding: 8px 0; font-size: 0.82rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-right { display: flex; gap: 20px; }
.topbar a, .topbar span { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); transition: var(--transition); }
.topbar a:hover { color: var(--gold); }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(30,42,86,0.08);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(30,42,86,0.15); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 44px; height: 44px; background: var(--navy); color: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--navy); }
.logo-sub { font-family: var(--font-head); font-weight: 700; font-size: 0.7rem; letter-spacing: 3px; color: var(--gold); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-head); font-weight: 600; font-size: 0.88rem;
  color: var(--charcoal); padding: 8px 14px; border-radius: 8px;
  transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--light-bg); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 10px;
  min-width: 220px; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: var(--transition);
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px; z-index: 999;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 8px 12px; border-radius: 8px; font-size: 0.83rem; font-weight: 500; color: var(--charcoal); transition: var(--transition); }
.dropdown-menu a:hover { background: var(--light-bg); color: var(--navy); }

.btn-call {
  background: var(--navy); color: var(--white) !important;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  padding: 10px 22px; border-radius: 50px; margin-left: 8px;
  transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.btn-call:hover { background: var(--gold); color: var(--navy) !important; }

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

/* ── HERO ── */
.hero {
  position: relative; min-height: 94vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/images/hero.png');
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(21,30,63,0.95) 45%, rgba(21,30,63,0.4)); z-index: 1; }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; }

.hero-text h1 {
  font-family: var(--font-head); font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 18px;
}
.hero-text h1 span { color: var(--gold); display: block; }
.hero-text p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 30px; max-width: 480px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 8px 16px; border-radius: 50px; color: rgba(255,255,255,0.9); font-size: 0.82rem; font-weight: 600; backdrop-filter: blur(4px); }
.hero-badge i { color: var(--gold); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary { background: var(--gold); color: var(--navy); font-family: var(--font-head); font-weight: 700; padding: 15px 34px; border-radius: 50px; border: none; cursor: pointer; font-size: 0.95rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.btn-hero-primary:hover { background: #f0c85d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,184,75,0.5); }
.btn-hero-secondary { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: var(--white); font-family: var(--font-head); font-weight: 600; padding: 13px 28px; border-radius: 50px; cursor: pointer; font-size: 0.9rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.btn-hero-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── BOOKING CARD ── */
.booking-card {
  background: var(--white); border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  overflow: hidden;
}
.booking-tabs { display: flex; background: var(--light-bg); }
.booking-tab {
  flex: 1; padding: 16px 10px; text-align: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.82rem;
  color: var(--gray); cursor: pointer; border: none; background: none;
  border-bottom: 3px solid transparent; transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.booking-tab i { font-size: 1.1rem; }
.booking-tab.active { color: var(--navy); border-bottom-color: var(--gold); background: var(--white); }
.booking-tab:hover:not(.active) { color: var(--navy); }

.booking-forms { padding: 24px; }
.booking-form { display: none; }
.booking-form.active { display: block; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.form-group input, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 0.9rem; color: var(--charcoal);
  transition: var(--transition); background: var(--white);
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,42,86,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-book { width: 100%; padding: 16px; background: var(--navy); color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; border: none; border-radius: var(--radius); cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 4px; }
.btn-book:hover { background: var(--gold); color: var(--navy); }

/* ── STATS BAR ── */
.stats-bar { background: var(--gold); padding: 20px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 12px 20px; border-right: 1px solid rgba(30,42,86,0.2); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-label { font-size: 0.78rem; font-weight: 600; color: var(--navy); opacity: 0.75; margin-top: 4px; }

/* ── WHY US ── */
.why-us { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.why-card {
  padding: 36px 28px; border-radius: 16px; border: 1.5px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.why-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { width: 60px; height: 60px; background: var(--light-bg); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--navy); margin-bottom: 20px; }
.why-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.why-card p { color: var(--gray); font-size: 0.9rem; }

/* ── FLEET ── */
.fleet-section { background: var(--light-bg); }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.fleet-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fleet-img { height: 200px; overflow: hidden; }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.fleet-card:hover .fleet-img img { transform: scale(1.05); }
.fleet-body { padding: 24px; }
.fleet-body h3 { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.15rem; margin-bottom: 8px; }
.fleet-meta { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.fleet-meta span { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--gray); }
.fleet-meta i { color: var(--navy); }
.fleet-price { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.fleet-price span { font-size: 0.8rem; font-weight: 400; color: var(--gray); }

/* ── ROUTES SECTION ── */
.routes-section { background: var(--white); }
.routes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.route-card {
  background: var(--light-bg); border-radius: 12px; padding: 18px 16px;
  border: 1.5px solid transparent; transition: var(--transition); display: flex; flex-direction: column; gap: 10px;
}
.route-card:hover { border-color: var(--navy); background: var(--white); box-shadow: var(--shadow); }
.route-from-to { display: flex; align-items: center; gap: 8px; }
.route-city { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.route-arrow { color: var(--gold); font-size: 0.8rem; }
.route-info { display: flex; justify-content: space-between; align-items: center; }
.route-dist { font-size: 0.78rem; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.route-fare { font-family: var(--font-head); font-weight: 700; color: var(--charcoal); font-size: 0.9rem; }
.route-fare span { font-size: 0.72rem; color: var(--gray); font-weight: 400; }
.routes-cta { text-align: center; margin-top: 40px; }

/* ── SLIDER ── */
.slider-section { background: var(--navy); padding: 60px 0; overflow: hidden; }
.slider-track { display: flex; gap: 20px; animation: slideAuto 18s linear infinite; }
.slider-track:hover { animation-play-state: paused; }
.slide-item { min-width: 360px; height: 220px; border-radius: 14px; overflow: hidden; flex-shrink: 0; }
.slide-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes slideAuto { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── HOW IT WORKS ── */
.how-section { background: var(--light-bg); }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.how-step { text-align: center; position: relative; }
.how-step:not(:last-child)::after {
  content: ''; position: absolute; top: 32px; left: calc(50% + 40px);
  right: calc(-50% + 40px); height: 2px; background: var(--border);
  z-index: 0;
}
.how-icon-wrap { width: 64px; height: 64px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--gold); margin: 0 auto 18px; position: relative; z-index: 1; }
.how-step h3 { font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.how-step p { color: var(--gray); font-size: 0.88rem; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--navy); }
.testimonials .section-title { color: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.testi-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 28px; backdrop-filter: blur(4px); transition: var(--transition); }
.testi-card:hover { background: rgba(255,255,255,0.10); }
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; }
.testi-text { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 20px; font-style: italic; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.testi-name { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 0.9rem; }
.testi-loc { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, #2c3d8f 100%); padding: 70px 0; }
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--white); }
.cta-band h2 span { color: var(--gold); }
.cta-band p { color: rgba(255,255,255,0.75); margin-top: 8px; }
.cta-band-btns { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }
.btn-wa { background: #25D366; color: var(--white); font-family: var(--font-head); font-weight: 700; padding: 15px 32px; border-radius: 50px; border: none; cursor: pointer; font-size: 0.95rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.btn-wa:hover { background: #1db955; transform: translateY(-2px); }

/* ── ROUTE PAGE ── */
.route-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 80px 0 50px; }
.route-hero h1 { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--white); }
.route-hero p { color: rgba(255,255,255,0.75); margin-top: 10px; font-size: 1.05rem; }
.route-breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.route-breadcrumb a { color: var(--gold); }

.route-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-top: 50px; }
.route-info-card { background: var(--white); border-radius: 16px; padding: 32px; box-shadow: var(--shadow); }
.route-info-card h2 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.route-fare-table { width: 100%; border-collapse: collapse; }
.route-fare-table th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; }
.route-fare-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.route-fare-table tr:hover td { background: var(--light-bg); }
.route-fare-table .price { font-family: var(--font-head); font-weight: 700; color: var(--navy); }

.route-sidebar .booking-card { box-shadow: var(--shadow-lg); }

/* ── ALL ROUTES PAGE ── */
.all-routes { padding: 60px 0; }
.hub-section { margin-bottom: 60px; }
.hub-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--navy); border-left: 4px solid var(--gold); padding-left: 16px; margin-bottom: 28px; }
.hub-routes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 60px 0; }
.contact-info h2 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.contact-info p { color: var(--gray); margin-bottom: 30px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon { width: 46px; height: 46px; background: var(--navy); color: var(--gold); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-text strong { display: block; font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-form-card { background: var(--white); border-radius: 16px; padding: 40px; box-shadow: var(--shadow-lg); }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 0; }
.about-img { border-radius: 20px; overflow: hidden; }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-text h2 { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.about-text p { color: var(--gray); margin-bottom: 16px; }

/* ── FLEET PAGE ── */
.page-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 80px 0; text-align: center; }
.page-hero h1 { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.75); margin-top: 12px; font-size: 1.05rem; }

/* ── FOOTER ── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 50px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo i { font-size: 1.8rem; color: var(--gold); }
.footer-logo span { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--white); display: block; }
.footer-logo small { font-size: 0.65rem; letter-spacing: 3px; color: var(--gold); display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: var(--transition); font-size: 0.9rem; }
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: var(--gold); border-radius: 2px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.87rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.contact-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.87rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.contact-list i { color: var(--gold); width: 16px; flex-shrink: 0; margin-top: 3px; }
.contact-list a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.contact-list a:hover { color: var(--gold); }
.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; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.credit strong { color: var(--gold); }
.credit a { color: var(--gold); }

/* ── ALERTS ── */
.alert { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.9rem; font-weight: 500; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; }
.wa-float a { display: flex; align-items: center; gap: 10px; background: #25D366; color: var(--white); padding: 14px 22px; border-radius: 50px; font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; box-shadow: 0 6px 24px rgba(37,211,102,0.4); transition: var(--transition); }
.wa-float a:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
.wa-float i { font-size: 1.2rem; }

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-text { text-align: center; }
  .hero-text p { max-width: 100%; }
  .hero-badges, .hero-cta { justify-content: center; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-routes, .routes-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 55px 0; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; inset: 0; background: var(--white); z-index: 998;
    flex-direction: column; justify-content: center; align-items: center; gap: 10px;
    transform: translateX(100%); transition: transform 0.35s ease;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; padding: 12px 24px; }
  .btn-call { margin: 10px 0 0; font-size: 1rem; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; grid-template-columns: 1fr 1fr; background: var(--light-bg); }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: grid; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(30,42,86,0.2); }
  .stat-item:nth-child(even), .stat-item:last-child { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .routes-grid, .hub-routes { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-step::after { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .route-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topbar-right { display: none; }
  .section-title { font-size: 1.7rem; }
  .wa-float a span { display: none; }
  .wa-float a { padding: 16px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .routes-grid, .hub-routes { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 1.8rem; }
  .slide-item { min-width: 280px; }
}
