/* ============================================================
   ECOCRUZE CABS — Official Brand CSS
   Navy + Green · Poppins + Montserrat + Manrope
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700&family=Manrope:wght@300;400;500;600&display=swap');

/* ── Brand Variables ── */
:root {
  --navy:        #0D2B52;
  --navy-deep:   #081A34;
  --navy-mid:    #1A3A6B;
  --green:       #2ECC71;
  --green-dark:  #27AE60;
  --green-pale:  #F0FFF4;
  --teal:        #00B894;
  --lime:        #8EDB4F;
  --gray-light:  #F5F7FA;
  --gray-mid:    #B5C7D8;
  --body-text:   #4A5568;
  --subhead:     #E8EEF5;
  --charcoal:    #1A1A1A;
  --white:       #FFFFFF;

  --font-head:   'Poppins', sans-serif;
  --font-sub:    'Montserrat', sans-serif;
  --font-body:   'Manrope', sans-serif;

  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  20px;
  --r-2xl: 28px;

  --shadow-sm:   0 2px 12px rgba(13,43,82,0.08);
  --shadow-md:   0 4px 24px rgba(13,43,82,0.12);
  --shadow-lg:   0 8px 48px rgba(13,43,82,0.16);
  --shadow-green: 0 4px 24px rgba(46,204,113,0.25);

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.2s var(--ease);
  --t-base: 0.3s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; max-width: 100vw; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--body-text); background: var(--white); line-height: 1.6; max-width: 100vw; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; width: 100%; }

/* ── Logo ── */
.logo-img { height: 56px; width: auto; object-fit: contain; }
.logo-img-white { filter: brightness(0) invert(1); }

/* ── Reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-delay="2"] { transition-delay: 0.15s; }
[data-delay="3"] { transition-delay: 0.25s; }
[data-delay="4"] { transition-delay: 0.35s; }

/* ── Section helpers ── */
.eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--green); }
.section-sub {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.8;
  max-width: 540px;
  font-weight: 400;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--r-md);
  transition: var(--t-base);
  white-space: nowrap;
  cursor: pointer;
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(13,43,82,0.2);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(13,43,82,0.04);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(13,43,82,0.25);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-lg { padding: 14px 32px; font-size: 0.95rem; border-radius: var(--r-lg); }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--t-base);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(13,43,82,0.12);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--t-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: var(--t-base);
  border-radius: 1px;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--t-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  min-height: 100vh;
  padding: 110px 32px 0;
  position: relative;
  overflow: visible;
}
.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 50%, rgba(46,204,113,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(26,58,107,0.8) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
/* Centered hero override */
.hero-centered {
  grid-template-columns: 1fr;
  max-width: 960px;
}
.hero-content {
  min-width: 0;
}
/* Hero content — flex column, vertically centered */
.hero-content.hero-content-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 110px);
  padding-bottom: 0;
  text-align: center;
}
/* Booking bar — no negative margin, just natural flow */
.hero-content.hero-content-center .booking-bar {
  margin-bottom: 0;
  position: relative;
  z-index: 10;
  margin-left: auto;
  margin-right: auto;
}
.hero-content-center {
  text-align: center;
}
.hero-content-center .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
.hero-content-center .hero-cta { justify-content: center; }
.hero-content-center .booking-bar { margin-left: auto; margin-right: auto; }
.hero-content-center .hero-stats { justify-content: center; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 24px;
}
.hero-accent { color: var(--green); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--subhead);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 560px;
  font-weight: 500;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0; }

/* Booking Bar */
.booking-bar {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 32px 32px 28px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.32);
  max-width: 900px;
  width: 100%;
}
.bb-tabs {
  display: flex;
  gap: 0;
  border: 1.5px solid #E8EEF5;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 22px;
}
.bb-tab {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--body-text);
  transition: var(--t-fast);
  border-right: 1.5px solid #E8EEF5;
  text-align: center;
}
.bb-tab:last-child { border-right: none; }
.bb-tab.active { background: var(--green); color: var(--white); }
.bb-tab:hover:not(.active) { background: var(--gray-light); color: var(--navy); }
.bb-form { display: flex; flex-direction: column; gap: 16px; }
.bb-row { display: flex; gap: 14px; align-items: flex-end; }
.bb-row-inputs { flex-wrap: wrap; }
.bb-row-date { flex-wrap: wrap; align-items: flex-end; }
.bb-search-btn { flex-shrink: 0; align-self: flex-end; height: 56px; padding: 0 32px; font-size: 0.95rem; }
.bb-search-city { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.bb-field { flex: 1; min-width: 0; }
.bb-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body-text);
  margin-bottom: 8px;
}
.bb-input {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #D0DCE8;
  border-radius: var(--r-md);
  padding: 16px 18px;
  transition: var(--t-fast);
  background: var(--white);
}
.bb-input:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(46,204,113,0.12);
}
.bb-input svg { color: var(--navy-mid); flex-shrink: 0; }
.bb-input input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  background: transparent;
}
.bb-input input::placeholder { color: #9BAFC4; font-weight: 400; }
/* datetime-local styling */
.bb-input input[type="datetime-local"] {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 500;
  min-width: 0;
  width: 100%;
}
.bb-input input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
}
/* When date field is shown, wrap form into 2 rows */
.bb-form.has-date {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.bb-form.has-date .bb-field { min-width: 0; }
.bb-form.has-date .bb-field:not(.date-field):first-child { grid-column: 1 / 2; }
.bb-form.has-date .bb-field:not(.date-field):nth-child(2) { grid-column: 2 / 3; }
.bb-form.has-date .date-field { grid-column: 1 / 2; }
.bb-form.has-date > button { grid-column: 2 / 3; align-self: end; }

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.h-stat { text-align: center; padding: 0 16px; }
.h-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
  display: inline;
}
.h-plus {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
}
.h-label {
  display: block;
  font-size: 0.7rem;
  color: var(--gray-mid);
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.h-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* Hero Visual — hidden in centered layout */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.ride-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-2xl);
  padding: 24px;
  width: 340px;
  position: relative;
  z-index: 2;
}
.ride-card-ping {
  position: absolute;
  top: 20px; right: 20px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  animation: ping 2s ease infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
.ride-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.ride-card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
}
.status-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
}
.ride-card-time {
  font-size: 0.72rem;
  color: var(--gray-mid);
  background: rgba(255,255,255,0.08);
  padding: 3px 10px;
  border-radius: 100px;
}
.ride-card-map {
  height: 140px;
  background: linear-gradient(135deg, #0a1a2e, #0d2040);
  border-radius: var(--r-lg);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,204,113,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,204,113,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.map-route {
  position: absolute;
  top: 50%; left: 15%;
  width: 70%; height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(46,204,113,0.2));
  transform: translateY(-50%) rotate(-10deg);
}
.map-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--navy-deep);
}
.map-dot.start { background: var(--green); top: 35%; left: 13%; box-shadow: 0 0 8px var(--green); }
.map-dot.end { background: #ef4444; bottom: 28%; right: 13%; box-shadow: 0 0 8px #ef4444; }
.ride-card-body {}
.driver-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.driver-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.driver-name { font-size: 0.85rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.driver-meta { font-size: 0.68rem; color: var(--gray-mid); }
.driver-fare {
  margin-left: auto;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}
.vehicle-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.vehicle-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--gray-mid);
  background: rgba(255,255,255,0.06);
  padding: 3px 8px;
  border-radius: 100px;
}
.vehicle-plate { font-size: 0.7rem; color: var(--gray-mid); }
.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(46,204,113,0.12);
  padding: 3px 8px;
  border-radius: 100px;
  margin-left: auto;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  animation: float-gentle 5s ease-in-out infinite;
}
.fc-co2 {
  display: flex;
  align-items: center;
  gap: 10px;
  bottom: -16px; right: -16px;
  animation-delay: 0s;
}
.fc-rating {
  top: -16px; left: -16px;
  animation-delay: 2.5s;
}
@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-icon {
  width: 32px; height: 32px;
  background: var(--green-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.fc-num { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--green); }
.fc-label { font-size: 0.65rem; color: var(--body-text); }
.fc-stars { color: #f59e0b; font-size: 0.8rem; margin-bottom: 4px; }
.fc-quote { font-size: 0.75rem; color: var(--navy); font-weight: 500; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 100px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid #E8EEF5;
  border-radius: var(--r-xl);
  padding: 32px 24px;
  position: relative;
  transition: var(--t-base);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.service-card.featured {
  border-color: var(--green);
  background: linear-gradient(160deg, rgba(46,204,113,0.04) 0%, var(--white) 60%);
}
.sc-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 3px 10px;
  border-radius: 100px;
}
.sc-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
  transition: var(--t-base);
}
.service-card:hover .sc-icon { background: var(--green); color: var(--white); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  transition: var(--t-fast);
}
.sc-link:hover { gap: 10px; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us { padding: 100px 0; background: var(--gray-light); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-desc {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 32px;
}
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--body-text);
}
.why-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.why-list strong { color: var(--navy); }
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-box {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green);
  transition: var(--t-base);
}
.stat-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { padding: 100px 0; background: var(--white); }
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.step-card {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border: 1.5px solid #E8EEF5;
  border-radius: var(--r-xl);
  transition: var(--t-base);
}
.step-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(13,43,82,0.06);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon {
  width: 60px; height: 60px;
  background: var(--green-pale);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin: 0 auto 20px;
  transition: var(--t-base);
}
.step-card:hover .step-icon { background: var(--green); color: var(--white); }
.step-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card p { font-size: 0.875rem; color: var(--body-text); line-height: 1.7; }
.step-arrow {
  color: var(--green);
  opacity: 0.4;
  padding: 0 12px;
  flex-shrink: 0;
}

/* ============================================================
   FLEET
   ============================================================ */
.fleet { padding: 100px 0; background: var(--gray-light); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fleet-card {
  background: var(--white);
  border: 1.5px solid #E8EEF5;
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: var(--t-base);
  position: relative;
}
.fleet-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}
.fleet-card.featured { border-color: var(--green); }
.fleet-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 3px 10px;
  border-radius: 100px;
  z-index: 1;
}
.fleet-img {
  height: 220px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  overflow: hidden;
}
.fleet-img-photo { background: #ffffff; padding: 0; }
.fleet-img-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  image-rendering: auto;
}
.fleet-img-dark { background: var(--navy-mid); }
.fleet-body { padding: 24px; }
.fleet-body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.fleet-body p { font-size: 0.875rem; color: var(--body-text); line-height: 1.6; margin-bottom: 14px; }
.fleet-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.fleet-tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--body-text);
  background: var(--gray-light);
  padding: 3px 10px;
  border-radius: 100px;
}
.eco-tag { background: var(--green-pale); color: var(--green-dark); font-weight: 600; }
.fleet-price {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.fleet-price span { font-size: 0.8rem; color: var(--body-text); font-weight: 400; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 100px 0; background: var(--white); overflow: hidden; }
.testimonials-wrapper { overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s var(--ease);
}
.t-card {
  min-width: 360px;
  background: var(--white);
  border: 1.5px solid #E8EEF5;
  border-radius: var(--r-xl);
  padding: 32px;
  flex-shrink: 0;
  transition: var(--t-base);
}
.t-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.t-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.t-card p {
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.t-footer { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.t-name { font-family: var(--font-sub); font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.t-city { font-size: 0.75rem; color: var(--body-text); }
.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.t-btn {
  width: 40px; height: 40px;
  border: 1.5px solid #E8EEF5;
  border-radius: 50%;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t-fast);
}
.t-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 7px; height: 7px;
  background: #E8EEF5;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--t-base);
}
.t-dot.active { background: var(--green); width: 24px; border-radius: 4px; }

/* ============================================================
   APP SECTION
   ============================================================ */
.app-section { padding: 100px 0; }
.app-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a6b42 100%);
  border-radius: var(--r-2xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.app-inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(46,204,113,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.app-content .section-title { color: var(--white); text-align: left; }
.app-content p { color: var(--gray-mid); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; }
.app-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.app-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--subhead);
}
.app-feat svg { color: var(--green); flex-shrink: 0; }
.app-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  color: var(--white);
  transition: var(--t-base);
}
.app-btn:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.app-btn svg { color: var(--green); }
.app-btn-sub { font-size: 0.62rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }
.app-btn-name { font-family: var(--font-head); font-size: 0.9rem; font-weight: 600; }

/* App Image */
.app-visual { 
  display: flex; 
  justify-content: center;
  align-items: center;
}
.app-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: contain;
}

.phone-book-btn {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 9px;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 100px 0; background: var(--gray-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #E8EEF5;
}
.contact-item:first-child { border-top: 1px solid #E8EEF5; }
.ci-icon {
  width: 40px; height: 40px;
  background: var(--green-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.contact-item h4 {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body-text);
  margin-bottom: 4px;
}
.contact-item p { font-size: 0.9rem; color: var(--navy); font-weight: 500; }
.contact-item span { font-size: 0.78rem; color: var(--body-text); }

.contact-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body-text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #E8EEF5;
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-size: 0.875rem;
  color: var(--navy);
  outline: none;
  transition: var(--t-fast);
  resize: vertical;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,204,113,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo-img {
  height: 88px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--gray-mid);
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 260px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--t-fast);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn i { font-size: 14px; line-height: 1; }
.social-btn:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.82rem;
  color: var(--gray-mid);
  transition: var(--t-fast);
}
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--gray-mid); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,26,52,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--t-base);
  padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 40px;
  max-width: 400px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px);
  transition: var(--t-base);
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 30px; height: 30px;
  border: 1.5px solid #E8EEF5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--body-text);
  transition: var(--t-fast);
}
.modal-close:hover { background: #fee2e2; border-color: #fca5a5; color: #ef4444; }
.modal-logo { margin-bottom: 20px; }
.modal-logo-img { height: 36px; width: auto; }

/* Hide Google reCAPTCHA badge — disclaimer shown inside modal instead (Google policy compliant) */
.grecaptcha-badge { visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.modal h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.modal > p { font-size: 0.875rem; color: var(--body-text); margin-bottom: 24px; }
.otp-hint { font-size: 0.82rem; color: var(--body-text); margin-bottom: 20px; }
.otp-hint span { color: var(--green); font-weight: 600; }
.otp-inputs { display: flex; gap: 8px; margin-bottom: 20px; justify-content: center; }
.otp-box {
  width: 46px; height: 52px;
  border: 1.5px solid #E8EEF5;
  border-radius: var(--r-md);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  outline: none;
  transition: var(--t-fast);
}
.otp-box:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,204,113,0.1);
}

/* ============================================================
   CUSTOM DATE/TIME PICKER
   ============================================================ */
.bb-datetime {
  flex-wrap: nowrap;
  gap: 0;
  padding: 0;
  align-items: center;
  cursor: pointer;
  position: relative;
  overflow: visible;
  min-height: 52px;
}
/* Date portion */
.dt-date-input {
  flex: 1;
  min-width: 100px;
  border: none !important;
  outline: none !important;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  padding: 0 10px;
  font-family: var(--font-body);
  align-self: center;
  line-height: 1;
}
.dt-date-input::placeholder { color: #9BAFC4; font-weight: 500; }

/* Separator between date and time */
.dt-sep {
  color: #D0DCE8;
  font-size: 1.1rem;
  padding: 0;
  align-self: center;
  flex-shrink: 0;
  line-height: 1;
}

/* Colon between HH and MM */
.dt-colon {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  align-self: center;
  flex-shrink: 0;
  padding: 0 1px;
}

/* Time section wrapper */
.dt-time-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  background: rgba(46,204,113,0.06);
  border-left: 1.5px solid #E8EEF5;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  flex-shrink: 0;
  align-self: stretch;
  cursor: pointer;
}

/* Custom select — fully overrides browser default */
.dt-select {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  padding: 4px 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: var(--font-body);
  text-align: center;
  min-width: 32px;
  border-radius: 4px;
  transition: background 0.15s;
}
.dt-select:hover,
.dt-select:focus {
  background: rgba(46,204,113,0.12);
  color: var(--green-dark);
  outline: none;
}
.dt-select option {
  background: #fff;
  color: var(--navy);
  font-weight: 600;
}

/* AM/PM pill */
.dt-ampm {
  color: var(--green);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  background: rgba(46,204,113,0.15);
  border-radius: 4px;
  padding: 3px 5px;
  margin-left: 2px;
  min-width: 34px;
  text-align: center;
}
.dt-ampm:hover,
.dt-ampm:focus {
  background: var(--green);
  color: #fff;
}
.dt-calendar {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  z-index: 9999;
  background: var(--white);
  border: 1.5px solid #E8EEF5;
  border-radius: var(--r-xl);
  box-shadow: 0 -8px 48px rgba(13,43,82,0.22), 0 2px 8px rgba(13,43,82,0.08);
  padding: 16px;
  min-width: 290px;
  animation: dtFadeUp 0.18s var(--ease);
}
@keyframes dtFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Time picker panel — same style as calendar, opens upward */
.dt-time-panel {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  z-index: 9999;
  background: var(--white);
  border: 1.5px solid #E8EEF5;
  border-radius: var(--r-lg);
  box-shadow: 0 -8px 48px rgba(13,43,82,0.22), 0 2px 8px rgba(13,43,82,0.08);
  padding: 12px 14px;
  min-width: 180px;
  animation: dtFadeUp 0.18s var(--ease);
}
.dt-time-panel-title {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--body-text);
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dt-time-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 10px;
}

/* Spinner column */
.dt-spinner-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.dt-spin-btn {
  width: 36px;
  height: 22px;
  border: 1.5px solid #E8EEF5;
  border-radius: var(--r-sm);
  background: var(--gray-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.6rem;
  transition: var(--t-fast);
  flex-shrink: 0;
}
.dt-spin-btn:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.dt-spin-val {
  width: 44px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  background: var(--white);
  border: 2px solid #E8EEF5;
  border-radius: var(--r-sm);
  letter-spacing: 0.02em;
}
.dt-spin-ampm {
  font-size: 0.82rem;
  color: var(--green);
  border-color: rgba(46,204,113,0.3);
  background: rgba(46,204,113,0.06);
  width: 40px;
}
.dt-time-colon {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  padding-bottom: 2px;
  align-self: center;
  line-height: 1;
}
.dt-time-done {
  width: 100%;
  padding: 7px 12px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--t-fast);
  text-align: center;
  letter-spacing: 0.04em;
}
.dt-time-done:hover { background: var(--green-dark); }
.dt-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.dt-cal-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}
.dt-cal-nav {
  width: 28px; height: 28px;
  border: 1.5px solid #E8EEF5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  transition: var(--t-fast);
  background: none;
  font-size: 0.85rem;
}
.dt-cal-nav:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.dt-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.dt-cal-day-name {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--body-text);
  padding: 4px 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dt-cal-day {
  text-align: center;
  padding: 6px 2px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--t-fast);
}
.dt-cal-day:hover:not(.dt-empty):not(.dt-disabled) {
  background: var(--green-pale);
  color: var(--green-dark);
}
.dt-cal-day.dt-today {
  border: 1.5px solid var(--green);
  color: var(--green-dark);
  font-weight: 700;
}
.dt-cal-day.dt-selected {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
}
.dt-cal-day.dt-disabled {
  color: #C8D5E0;
  cursor: not-allowed;
}
.dt-cal-day.dt-empty { cursor: default; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { flex-direction: column; align-items: center; gap: 16px; }
  .step-arrow { transform: rotate(90deg); }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .app-inner { grid-template-columns: 1fr; gap: 48px; padding: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   MOBILE RESPONSIVE — 768px and below
   ============================================================ */
/* Mobile only nav links */
.mobile-nav-right { display: none; }

@media (max-width: 768px) {
  /* Navbar */
  .nav-links { display: none; }
  .nav-actions { display: none; }
  
  .mobile-nav-right { display: flex; align-items: center; gap: 16px; }
  .mobile-user-menu { position: relative; font-size: 28px; color: var(--navy); cursor: pointer; display: flex; align-items: center; }
  .mobile-user-dropdown {
    display: none; position: absolute; top: 40px; right: 0; background: var(--white);
    box-shadow: var(--shadow-md); border-radius: 8px; padding: 8px 0; min-width: 120px; z-index: 1000;
  }
  .mobile-user-dropdown.active { display: flex; flex-direction: column; }
  .mobile-user-dropdown a { padding: 10px 16px; font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; }
  .mobile-user-dropdown a:hover { background: #f5f5f5; color: var(--green); }
  
  .hamburger { display: flex; }
  .logo-img { height: 44px; }
  .nav-inner { height: 60px; padding: 0 16px; gap: 0; justify-content: space-between; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open a {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
  }

  /* Hero — top-aligned, fills full screen, uses space well */
  .hero {
    padding: 72px 16px 32px;
    overflow-x: hidden;
    min-height: 100svh;
    min-height: 100vh;
  }
  .hero-inner { max-width: 100%; }
  .hero-centered { max-width: 100%; }
  .hero-content-center { text-align: center; }
  .hero-title {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    word-break: break-word;
    overflow-wrap: break-word;
    margin-top: 40px;
    margin-bottom: 32px;
    line-height: 1.15;
  }
  /* Full-width CTA buttons stacked */
  .hero-cta {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  /* Booking widget — bigger and more prominent */
  .booking-bar {
    padding: 20px 18px 18px;
    max-width: 100% !important;
    width: 100%;
    box-sizing: border-box;
    border-radius: var(--r-xl);
    box-shadow: 0 12px 48px rgba(0,0,0,0.24);
  }
  .bb-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    margin-bottom: 16px;
  }
  .bb-tab {
    font-size: 0.82rem;
    padding: 13px 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
  }
  .bb-form { flex-direction: column; gap: 12px; }
  .bb-row { flex-direction: column; gap: 12px; }
  .bb-row-inputs { flex-direction: column; }
  .bb-row-date { flex-direction: column; }
  .bb-field { width: 100%; min-width: 0; }
  .bb-field label { margin-bottom: 6px; font-size: 0.7rem; }
  .bb-input { padding: 14px 16px; }
  .bb-input input { font-size: 0.95rem; }
  .bb-search-btn { width: 100%; height: auto; padding: 15px; justify-content: center; font-size: 0.95rem; }
  .bb-search-city { width: 100%; padding: 15px; font-size: 0.95rem; }
  .bb-datetime { flex-wrap: wrap; gap: 6px; }

  /* Vehicle grid in step 2 — make it horizontally scrollable on mobile to prevent overflow */
  .bw-vehicle-grid {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px !important;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .bw-vehicle {
    flex: 0 0 110px !important;
  }

  /* Passenger details step 3 — stack to 1 col */
  .bw-details-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* Hero stats */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
    width: 100%;
  }
  .h-divider { display: none; }
  .h-stat {
    padding: 12px 8px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--r-md);
    border: 1px solid rgba(255,255,255,0.1);
  }
  .h-num { font-size: 1.4rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; max-width: 100%; margin: 0 auto; }

  /* Fleet */
  .fleet-grid { grid-template-columns: 1fr; max-width: 100%; margin: 0 auto; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .app-inner { padding: 24px; }

  /* Testimonials */
  .testimonials { padding: 64px 0; }
  .testimonials-wrapper { overflow: hidden; width: 100%; }
  .testimonials-track { width: 100%; }
  .t-card { min-width: calc(100vw - 64px); max-width: calc(100vw - 64px); }
  .t-controls { margin-top: 24px; }

  /* Section padding */
  .services,
  .why-us,
  .how-it-works,
  .fleet,
  .app-section,
  .contact { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
}

/* ============================================================
   MOBILE RESPONSIVE — 480px and below
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* Logo */
  .logo-img { height: 38px; }
  .nav-inner { height: 56px; }

  /* Hero */
  .hero { padding: 72px 14px 48px; }
  .hero-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
    line-height: 1.15;
  }

  /* Section titles */
  .section-title { font-size: clamp(1.5rem, 6vw, 1.9rem); }

  /* Booking widget tabs — keep them big even on small phones */
  .bb-tab { font-size: 0.78rem; padding: 12px 4px; font-weight: 700; }
  .bb-tab i { display: none; }

  /* Booking bar */
  .booking-bar { padding: 14px; border-radius: var(--r-lg); }

  /* Hero stats — 2x2 grid */
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .h-stat { padding: 10px 6px; }
  .h-num { font-size: 1.2rem; }
  .h-label { font-size: 0.62rem; }

  /* Footer — center aligned on mobile */
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-brand .logo-img { height: 52px; }
  .footer-brand p { max-width: 100%; text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-col { text-align: center; }
  .footer-col ul { align-items: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; }

  /* Contact form */
  .contact-form { padding: 20px; }

  /* Testimonials */
  .testimonials { padding: 48px 0; }
  .t-card { min-width: calc(100vw - 28px); max-width: calc(100vw - 28px); padding: 20px; }

  /* App section */
  .app-inner { padding: 20px; border-radius: var(--r-xl); }
  .app-btns { flex-direction: column; }
  .app-btn { justify-content: center; }

  /* Steps */
  .step-card { padding: 28px 20px; }

  /* Section padding */
  .services,
  .why-us,
  .how-it-works,
  .fleet,
  .testimonials,
  .app-section,
  .contact { padding: 48px 0; }
  .section-header { margin-bottom: 28px; }
}

/* ============================================================
   EXTRA SMALL — 360px and below
   ============================================================ */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero { padding: 68px 12px 40px; }
  .hero-title { font-size: 1.5rem; }
  .bb-tab { font-size: 0.6rem; padding: 6px 2px; }
  .booking-bar { padding: 12px; }
  .btn-lg { padding: 12px 20px; font-size: 0.85rem; }
  .hero-stats { gap: 8px; }
  .h-stat { padding: 8px 4px; }
  .h-num { font-size: 1.1rem; }
}
