:root {
  --navy: #0c1b33;
  --navy-light: #142a4d;
  --orange: #ff6a2b;
  --orange-dark: #e85a1c;
  --yellow: #ffc107;
  --light-bg: #f6f8fb;
  --text-muted: #6b7280;
  --radius: 14px;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: #1c2333;
  background: #fff;
}

a { text-decoration: none; }

/* ---------- Navbar ---------- */
.navbar-top {
  background: var(--navy);
  color: #cbd5e1;
  font-size: 0.85rem;
}
.navbar-top a { color: #cbd5e1; }
.navbar-main {
  background: #fff;
  box-shadow: 0 2px 12px rgba(12,27,51,0.08);
  padding: 0.6rem 0;
}
.navbar-main .navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
}
.brand-logo { height: 64px; width: auto; }
@media (max-width: 767px) { .brand-logo { height: 50px; } }
.navbar-brand span { color: var(--orange); }
.navbar-main .nav-link {
  color: var(--navy);
  font-weight: 500;
  margin: 0 0.5rem;
}
.navbar-main .nav-link:hover { color: var(--orange); }
.btn-call {
  background: var(--orange);
  color: #fff !important;
  border-radius: 50px;
  padding: 0.55rem 1.3rem;
  font-weight: 600;
}
.btn-call:hover { background: var(--orange-dark); color:#fff !important; }

.dropdown-menu { border-radius: 10px; border: none; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(120deg, var(--navy) 55%, var(--navy-light) 100%);
  color: #fff;
  padding: 70px 0 40px;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero h1 .accent { color: var(--orange); }
.hero p.lead { color: #cbd5e1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.hero-car-icon {
  font-size: 8rem;
  opacity: 0.9;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--navy);
  color: #fff;
  padding: 14px 0;
  font-size: 0.9rem;
}
.trust-strip .star { color: var(--yellow); }

/* ---------- Booking widget ---------- */
.booking-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 15px 45px rgba(12,27,51,0.15);
  padding: 28px;
  margin-top: -60px;
  position: relative;
  z-index: 5;
}
.booking-card .form-label { font-weight: 600; font-size: 0.85rem; color: var(--navy); }
.booking-card .form-control, .booking-card .form-select {
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  border: 1px solid #e2e8f0;
}
.btn-orange {
  background: var(--orange);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.65rem 1.5rem;
}
.btn-orange:hover { background: var(--orange-dark); color: #fff; }

/* ---------- Section headings ---------- */
.section-tag {
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.section-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 2rem;
}

/* ---------- Cards ---------- */
.feature-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 28px 22px;
  height: 100%;
  transition: 0.25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(12,27,51,0.1); }
.feature-icon {
  width: 54px; height: 54px;
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.fleet-card {
  border: 1px solid #eef1f6;
  border-radius: var(--radius);
  text-align: center;
  padding: 24px 16px;
  height: 100%;
  background: #fff;
  transition: 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fleet-card:hover { box-shadow: 0 12px 30px rgba(12,27,51,0.1); transform: translateY(-4px); }
.fleet-icon { font-size: 3rem; color: var(--orange); margin-bottom: 12px; }
.fleet-photo-wrap {
  width: 100%;
  height: 110px;
  background: var(--light-bg);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fleet-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fleet-card .car-name { margin-top: auto; }

/* Featured fleet card (e.g. Innova Crysta) - stands out, same footprint as other cards */
.fleet-card.featured {
  border: 2px solid var(--orange);
  background: linear-gradient(180deg, #fff 0%, #fff7f2 100%);
  padding-top: 32px;
  position: relative;
  box-shadow: 0 10px 28px rgba(255,106,43,0.18);
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(255,106,43,0.35);
  z-index: 2;
}

.route-pill {
  display: inline-block;
  background: var(--light-bg);
  color: var(--navy);
  border-radius: 50px;
  padding: 10px 18px;
  margin: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #e6eaf0;
}
.route-pill:hover { background: var(--orange); color: #fff; }

/* ---------- Route landing page ---------- */
.route-hero {
  background: linear-gradient(120deg, var(--navy) 60%, var(--navy-light) 100%);
  color: #fff;
  padding: 55px 0;
}
.route-hero h1 { font-size: 2.1rem; font-weight: 700; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 50px 0 20px;
}
footer.site-footer h5 { color: #fff; font-weight: 600; }
footer.site-footer a { color: #cbd5e1; }
footer.site-footer a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 18px;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25D366;
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 999;
}
.wa-float:hover { color: #fff; transform: scale(1.06); }

@media (max-width: 767px) {
  .hero h1 { font-size: 2rem; }
  .booking-card { margin-top: 20px; }
}