:root {
  --yellow: #FFC107;
  --yellow-dark: #e6ac00;
  --yellow-light: #fff3cd;
  --black: #121212;
  --black-soft: #1e1e1e;
  --dark-card: #1a1a2e;
  --white: #ffffff;
  --gray: #f5f5f5;
  --gray2: #e8e8e8;
  --text-muted: #6b7280;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-hover: 0 12px 40px rgba(255,193,7,0.18);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: #f9f9f9; color: var(--black); overflow-x: hidden; }

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(18,18,18,0.97);
  backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  border-bottom: 2px solid var(--yellow);
}
.nav-logo {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem; font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: #fff; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: #ccc; text-decoration: none; font-size: 0.92rem; font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--yellow); }
.nav-cta {
  background: var(--yellow); color: var(--black);
  padding: 8px 22px; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
  text-decoration: none; transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--yellow-dark); transform: scale(1.04); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--yellow); border-radius: 3px; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: rgba(18,18,18,0.99);
  border-top: 1px solid rgba(255,193,7,0.2);
  padding: 12px 5%;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #ccc; text-decoration: none; padding: 12px 0; font-weight: 600; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color .2s; }
.mobile-menu a:hover { color: var(--yellow); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #121212 60%, #1a1200 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 80px 5% 60px;
  position: relative; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: repeating-linear-gradient(45deg, #FFC107 0, #FFC107 1px, transparent 0, transparent 50%);
  background-size: 28px 28px;
}
.hero-glow {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,193,7,0.22) 0%, transparent 70%);
  top: -80px; right: -100px; pointer-events: none;
}
.hero-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; max-width: 1100px; width: 100%; position: relative; z-index: 1;
}
.hero-text { flex: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(255,193,7,0.15);
  border: 1px solid rgba(255,193,7,0.4);
  color: var(--yellow);
  font-size: 0.78rem; font-weight: 700;
  padding: 5px 14px; border-radius: 50px;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; color: #fff;
  line-height: 1.1; margin-bottom: 18px;
}
.hero-title .accent { color: var(--yellow); }
.hero-subtitle {
  font-size: 1.08rem; color: #b0b0b0;
  line-height: 1.7; margin-bottom: 36px; max-width: 440px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--yellow); color: var(--black);
  padding: 13px 30px; border-radius: 50px;
  font-weight: 800; font-size: 1rem;
  border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,193,7,0.35); }
.btn-outline {
  background: transparent; color: #fff;
  padding: 13px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.3); cursor: pointer;
  transition: border-color .2s, color .2s;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* Hero right — illustration card */
.hero-card-wrap { flex: 0 0 340px; }
.hero-illus-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,193,7,0.2);
  border-radius: 28px; padding: 28px 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  animation: float 4s ease-in-out infinite;
  text-align: center;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.illus-icon { font-size: 4rem; margin-bottom: 14px; }
.illus-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.25rem; font-weight: 800; color: var(--yellow);
  margin-bottom: 8px;
}
.illus-desc { color: #999; font-size: 0.88rem; line-height: 1.6; margin-bottom: 22px; }
.illus-stats { display: flex; gap: 0; border-top: 1px solid rgba(255,193,7,0.15); padding-top: 20px; }
.illus-stat { flex: 1; text-align: center; border-right: 1px solid rgba(255,193,7,0.1); padding: 0 8px; }
.illus-stat:last-child { border-right: none; }
.illus-stat-num { font-family: 'Baloo 2', cursive; font-size: 1.4rem; font-weight: 800; color: var(--yellow); }
.illus-stat-label { font-size: 0.72rem; color: #666; margin-top: 2px; }

/* ── SECTIONS SHARED ── */
section { padding: 80px 5%; }
.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 10px;
}
.section-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--black);
  margin-bottom: 12px; line-height: 1.2;
}
.section-subtitle { color: var(--text-muted); font-size: 1rem; max-width: 500px; line-height: 1.6; margin-bottom: 48px; }

/* ── FEATURES ── */
.features-bg { background: #fff; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 20px;
}
.feature-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-hover);
  border-color: var(--yellow);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--yellow-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 14px;
  transition: background .2s;
}
.feature-card:hover .feature-icon { background: var(--yellow); }
.feature-title { font-weight: 700; font-size: 0.95rem; color: var(--black); }

/* ── VEHICLES ── */
.vehicles-bg { background: var(--gray); }
.vehicles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 24px; }
.vehicle-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.vehicle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.vehicle-emoji { font-size: 2.8rem; margin-bottom: 14px; }
.vehicle-name { font-family: 'Baloo 2', cursive; font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.vehicle-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ── TRIP SHOWCASE ── */
.trip-bg { background: var(--black); }
.trip-bg .section-title { color: #fff; }
.trip-bg .section-subtitle { color: #888; }
.trip-showcase-inner { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.trip-info { flex: 1; min-width: 260px; }
.trip-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(255,193,7,0.2);
  border-radius: 24px; padding: 28px;
  max-width: 420px; flex: 0 0 420px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.trip-route {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
}
.route-city { font-size: 1.15rem; font-weight: 800; color: #fff; }
.route-arrow { flex: 1; display: flex; align-items: center; gap: 6px; color: var(--yellow); }
.route-line { flex: 1; height: 2px; background: linear-gradient(90deg, rgba(255,193,7,0.3), rgba(255,193,7,0.8), rgba(255,193,7,0.3)); border-radius: 2px; }
.trip-meta { display: flex; flex-direction: column; gap: 10px; }
.trip-meta-item { display: flex; align-items: center; gap: 10px; color: #aaa; font-size: 0.88rem; }
.trip-meta-item i { color: var(--yellow); width: 16px; }

/* ── CITY SEARCH FEATURE — STATIC SHOWCASE ── */
.csf-bg {
  background: linear-gradient(160deg, #0f0f0f 0%, #1a1200 100%);
  padding: 80px 5%;
  position: relative; overflow: hidden;
}
.csf-bg::before {
  content: '';
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, #FFC107 0, #FFC107 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
  pointer-events: none;
}
.csf-inner {
  display: flex; align-items: flex-start; gap: 56px; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* Mock phone card */
.csf-mock {
  flex: 0 0 320px; min-width: 280px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,193,7,0.18);
  border-radius: 28px; padding: 24px 20px;
  backdrop-filter: blur(16px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.csf-mock-label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 18px; display: flex; align-items: center;
}

/* Typing search bar */
.mock-search-bar {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,193,7,0.3);
  border-radius: 12px; padding: 11px 14px;
  margin-bottom: 6px;
}
.mock-typing-text { font-size: 0.88rem; color: #fff; flex: 1; }
.mock-cursor {
  color: var(--yellow); font-weight: 700; font-size: 1rem;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Dropdown */
.mock-dropdown {
  background: #1a1a1a; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; overflow: hidden; margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.mock-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; font-size: 0.83rem; color: #ccc;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background .15s;
}
.mock-dropdown-item:last-child { border-bottom: none; }
.mock-dropdown-item i { color: #555; font-size: 0.8rem; width: 14px; }
.mock-dropdown-item.mock-highlight {
  background: rgba(255,193,7,0.1);
  color: #fff;
}
.mock-dropdown-item.mock-highlight i { color: var(--yellow); }
.mock-count { margin-left: auto; font-size: 0.72rem; color: #666; }

/* Tags */
.mock-tags-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.mock-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); color: #ccc;
  padding: 5px 12px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
}
.mock-tag span { opacity: 0.6; font-size: 0.7rem; }
.mock-tag.mock-tag-active {
  background: var(--yellow); color: var(--black);
  border-color: var(--yellow);
}
.mock-tag.mock-tag-active span { opacity: 0.7; }

/* Divider */
.mock-divider { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.mock-divider-lbl { font-size: 0.68rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.mock-divider-lbl.local-lbl { color: #c8960a; }
.mock-divider-line { flex: 1; height: 1px; background: rgba(255,255,255,0.08); }

/* Driver cards inside mock */
.mock-driver-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 12px; margin-bottom: 10px;
}
.mock-driver-card.local {
  background: rgba(255,193,7,0.06);
  border-color: rgba(255,193,7,0.25);
}
.mock-driver-top { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.mock-avatar {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Baloo 2', cursive; font-size: 0.85rem; font-weight: 800;
}
.mock-avatar.yellow { background: var(--yellow); color: var(--black); }
.mock-avatar.gray { background: #2a2a2a; color: #888; }
.mock-driver-info { flex: 1; }
.mock-driver-name { color: #fff; font-weight: 700; font-size: 0.85rem; margin-bottom: 2px; }
.mock-driver-city { font-size: 0.72rem; color: #777; }
.mock-driver-city.local-city { color: #c8960a; }
.mock-local-pin {
  font-size: 0.66rem; font-weight: 800; color: var(--yellow);
  text-transform: uppercase; letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 3px; margin-top: 3px;
}
.mock-avail-badge { font-size: 0.68rem; font-weight: 700; color: #22c55e; white-space: nowrap; margin-top: 2px; }
.mock-driver-footer {
  display: flex; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 8px;
  font-size: 0.72rem; color: #777;
}
.mock-driver-footer span { display: flex; align-items: center; gap: 4px; }
.mock-driver-footer i { color: var(--yellow); font-size: 0.65rem; }

/* Right column */
.csf-right { flex: 1; min-width: 280px; }

/* Steps */
.csf-steps { margin-bottom: 36px; }
.csf-step {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 22px; border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background .25s, border-color .25s;
}
.csf-step:hover { background: rgba(255,193,7,0.05); border-color: rgba(255,193,7,0.2); }
.csf-step-num {
  font-family: 'Baloo 2', cursive;
  font-size: 2rem; font-weight: 800; color: rgba(255,193,7,0.18);
  line-height: 1; flex-shrink: 0; width: 36px;
}
.csf-step-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: rgba(255,193,7,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); font-size: 1.1rem; flex-shrink: 0;
  transition: background .25s;
}
.csf-step:hover .csf-step-icon { background: rgba(255,193,7,0.2); }
.csf-step-body { flex: 1; }
.csf-step-title { font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 1.05rem; color: #fff; margin-bottom: 5px; }
.csf-step-desc { font-size: 0.87rem; color: #888; line-height: 1.65; }
.csf-step-connector {
  width: 2px; height: 20px; background: rgba(255,193,7,0.15);
  margin: 4px 0 4px 32px; border-radius: 2px;
}

/* Feature pills */
.csf-features { margin-bottom: 32px; }
.csf-feat-title { font-size: 0.75rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; }
.csf-feat-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.csf-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: #ccc; font-size: 0.82rem; font-weight: 600;
  padding: 7px 14px; border-radius: 50px;
  transition: background .2s, border-color .2s, color .2s;
}
.csf-pill:hover { background: rgba(255,193,7,0.1); border-color: rgba(255,193,7,0.3); color: var(--yellow); }
.csf-pill i { color: var(--yellow); font-size: 0.78rem; }

/* CTA */
.csf-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.csf-cta-note { font-size: 0.82rem; color: #555; }

@media(max-width:768px) {
  .csf-inner { flex-direction: column; }
  .csf-mock { flex: none; width: 100%; }
  .csf-cta { flex-direction: column; align-items: flex-start; }
}

/* ── CITY DRIVER SEARCH ── */
.city-bg { background: var(--gray); }

/* Search bar */
.city-search-bar { position: relative; max-width: 560px; margin-bottom: 20px; }
.city-search-wrap {
  display: flex; align-items: center;
  background: #fff;
  border: 2px solid var(--gray2);
  border-radius: 16px;
  overflow: visible;
  transition: border-color .2s, box-shadow .2s;
}
.city-search-wrap:focus-within {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,193,7,0.12);
}
.city-search-icon { padding: 0 14px; color: var(--text-muted); font-size: 1rem; flex-shrink: 0; }
.city-search-input {
  flex: 1; border: none; outline: none;
  font-family: 'Nunito', sans-serif;
  font-size: 0.97rem; color: var(--black);
  padding: 14px 0; background: transparent;
}
.city-search-input::placeholder { color: #aaa; }
.city-search-clear {
  padding: 0 16px; background: none; border: none;
  color: var(--text-muted); cursor: pointer; font-size: 1rem;
  transition: color .2s;
}
.city-search-clear:hover { color: var(--black); }

/* Autocomplete suggestions */
.city-suggestions {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: #fff; border: 1.5px solid var(--gray2);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 100; display: none;
}
.city-suggestions.open { display: block; }
.city-suggestion-item {
  padding: 12px 18px; cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; transition: background .15s;
  border-bottom: 1px solid var(--gray2);
}
.city-suggestion-item:last-child { border-bottom: none; }
.city-suggestion-item:hover { background: var(--yellow-light); }
.city-suggestion-item i { color: var(--yellow); font-size: 0.85rem; width: 16px; }
.city-suggestion-item .match-text { color: var(--yellow); font-weight: 700; }

/* Filter info bar */
.city-filter-info {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.filter-badge {
  background: var(--yellow); color: var(--black);
  font-weight: 700; font-size: 0.82rem;
  padding: 5px 14px; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 6px;
}
.filter-clear-btn {
  font-size: 0.82rem; color: var(--text-muted);
  cursor: pointer; transition: color .2s;
}
.filter-clear-btn:hover { color: var(--black); }

/* City tags row */
.city-tags-row { margin-bottom: 28px; }
.city-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.city-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--black);
  padding: 8px 16px; border-radius: 50px;
  font-weight: 700; font-size: 0.88rem;
  animation: popIn .3s ease; cursor: default;
}
@keyframes popIn { from{transform:scale(0.7);opacity:0} to{transform:scale(1);opacity:1} }
.city-tag-remove {
  cursor: pointer; opacity: 0.7; transition: opacity .2s;
  font-size: 0.8rem;
  background: rgba(0,0,0,0.15); border-radius: 50%;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
}
.city-tag-remove:hover { opacity: 1; }

/* Results header */
.driver-results-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1.5px solid var(--gray2);
}
#driverResultsCount { font-size: 0.88rem; font-weight: 700; color: var(--text-muted); }

/* Priority label */
.priority-label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 50px; margin-bottom: 14px; display: inline-block;
}
.priority-label.local { background: rgba(255,193,7,0.18); color: #b8860b; }
.priority-label.other { background: var(--gray2); color: var(--text-muted); }

/* Driver cards grid */
.driver-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.driver-card {
  background: #fff; border-radius: 18px;
  padding: 20px; box-shadow: var(--shadow);
  border: 1.5px solid transparent;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  animation: fadeUp .4s ease both;
}
.driver-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--yellow); }
.driver-card.local-match { border-color: rgba(255,193,7,0.4); background: #fffdf2; }
.driver-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.driver-avatar {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Baloo 2', cursive; font-size: 1.1rem; font-weight: 800;
  color: var(--black); flex-shrink: 0;
}
.driver-avatar.other-city { background: var(--gray2); color: var(--text-muted); }
.driver-name { font-weight: 800; font-size: 0.97rem; color: var(--black); margin-bottom: 2px; }
.driver-city-tag {
  font-size: 0.75rem; font-weight: 700;
  padding: 2px 9px; border-radius: 50px; display: inline-block;
}
.driver-city-tag.local { background: rgba(255,193,7,0.2); color: #8a6000; }
.driver-city-tag.other { background: var(--gray2); color: var(--text-muted); }
.driver-meta { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--gray2); padding-top: 12px; }
.driver-meta-row { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); }
.driver-meta-row i { color: var(--yellow); width: 14px; font-size: 0.78rem; }
.driver-rating { font-size: 0.78rem; font-weight: 700; color: #f59e0b; margin-top: 2px; }
.driver-local-pin {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.5px;
  color: var(--yellow); text-transform: uppercase;
  display: flex; align-items: center; gap: 4px; margin-top: 8px;
}

/* Section dividers inside grid */
.driver-section-divider {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 12px;
  margin: 8px 0 4px;
}
.driver-section-divider span {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; white-space: nowrap;
}
.driver-section-divider span.local-lbl { color: #b8860b; }
.driver-section-divider span.other-lbl { color: var(--text-muted); }
.divider-line { flex: 1; height: 1px; background: var(--gray2); }

/* Empty state */
.driver-empty {
  grid-column: 1 / -1; text-align: center;
  padding: 48px 24px; color: var(--text-muted);
}
.driver-empty i { font-size: 2.5rem; margin-bottom: 14px; display: block; color: var(--gray2); }

/* ── CTA ── */
.cta-bg {
  background: #ffffff;
  text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid var(--gray2);
  border-bottom: 1px solid var(--gray2);
}
.cta-bg .section-label { color: var(--yellow-dark); }
.cta-bg .section-title { color: var(--black); }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-download {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: var(--black);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 800; font-size: 1rem;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.btn-download:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(255,193,7,0.35); }

/* ── FOOTER ── */
footer {
  background: #0a0a0a; padding: 48px 5% 28px;
  border-top: 1px solid rgba(255,193,7,0.15);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand-name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem; font-weight: 800; color: var(--yellow);
  margin-bottom: 12px;
}
.footer-desc { color: #666; font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: #888; font-size: 0.9rem; cursor: pointer;
  transition: background .2s, color .2s; text-decoration: none;
}
.social-icon:hover { background: var(--yellow); color: var(--black); }
.footer-col-title { color: #fff; font-weight: 700; margin-bottom: 16px; font-size: 0.92rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #666; text-decoration: none; font-size: 0.88rem; transition: color .2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px; display: flex;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { color: #444; font-size: 0.82rem; }
.footer-copy span { color: var(--yellow); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media(max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-card-wrap { flex: none; width: 100%; max-width: 320px; margin: 0 auto; }
  .trip-showcase-inner { flex-direction: column; }
  .trip-card { flex: none; max-width: 100%; width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}