/* ============================================
   CHOLEN JAI — Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  --purple: #7C3AED;
  --purple-light: #9F67F8;
  --purple-dark: #5B21B6;
  --purple-bg: #EDE9FE;
  --purple-glow: rgba(124, 58, 237, 0.35);
  --accent: #A855F7;
  --green: #10B981;
  --yellow: #FBBF24;
  --white: #FFFFFF;
  --off-white: #F8F7FF;
  --text: #1E1B4B;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --border-light: rgba(124,58,237,0.12);
  --card-bg: #FFFFFF;
  --card-shadow: 0 4px 24px rgba(124,58,237,0.10);
  --hero-bg: linear-gradient(135deg, #EDE9FE 0%, #F5F3FF 40%, #E0E7FF 100%);
  --nav-bg: rgba(255,255,255,0.96);
  --navbar-border: rgba(124,58,237,0.10);
  --gradient: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
  --gradient-text: linear-gradient(90deg, #7C3AED, #A855F7);
  --section-bg: #FAFAFA;
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-alt: 'Manrope', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* Dark mode */
body.dark {
  --white: #0F0A1E;
  --off-white: #150D2E;
  --text: #F5F3FF;
  --text-muted: #C4B5FD;
  --text-light: #A78BFA;
  --border: #2D2060;
  --card-bg: #1A1040;
  --card-shadow: 0 4px 30px rgba(124,58,237,0.25);
  --hero-bg: linear-gradient(135deg, #150D2E 0%, #1A1040 50%, #0F0A1E 100%);
  --nav-bg: rgba(15, 10, 30, 0.97);
  --navbar-border: rgba(124,58,237,0.25);
  --section-bg: #0F0A1E;
}

/* Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ============================================
   GRADIENT TEXT
   ============================================ */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-main);
  transition: all var(--transition);
  box-shadow: 0 4px 20px var(--purple-glow);
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,0.5);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--border);
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}

/* ============================================
   SECTION LABELS
   ============================================ */
.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
  display: inline-block;
}
.section-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--navbar-border);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(124,58,237,0.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .5px;
  font-family: var(--font-main);
  flex-shrink: 0;
}
.logo-text { color: var(--text); }
.logo-text span { color: var(--purple); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--purple);
  background: var(--purple-bg);
}
.nav-link.active {
  background: var(--gradient);
  color: white;
}

.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--card-shadow);
  min-width: 180px;
  padding: 8px;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  color: var(--text-muted);
  transition: all var(--transition);
}
.dropdown-menu a:hover { background: var(--purple-bg); color: var(--purple); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--text-muted);
  transition: all var(--transition);
}
.theme-toggle:hover { background: var(--purple-bg); color: var(--purple); }

.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  white-space: nowrap;
}

.btn-login {
  padding: 9px 20px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-login:hover { border-color: var(--purple); color: var(--purple); }

.btn-signup {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--gradient);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: 0 2px 10px var(--purple-glow);
}
.btn-signup:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--purple-glow); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--hero-bg);
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(124,58,237,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(168,85,247,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - 70px);
  padding-top: 40px;
  padding-bottom: 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.10);
  border: 1px solid rgba(124,58,237,0.20);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 20px;
  width: fit-content;
}
.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  font-family: var(--font-main);
}
.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero visuals */
.hero-visuals {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-car-wrap {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 80%;
}
.hero-car-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 60px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.4) 0%, transparent 70%);
  filter: blur(10px);
}
.hero-car {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(124,58,237,0.3));
  animation: floatCar 4s ease-in-out infinite;
}
.hero-car-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  height: 200px;
}
@keyframes floatCar {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.loc-pin {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  font-size: 12px;
  animation: floatPin 3s ease-in-out infinite;
}
.top-pin {
  top: 40px;
  left: 30%;
  animation-delay: .5s;
}
.loc-pin i { color: var(--purple); font-size: 18px; }
.loc-pin strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.loc-pin span { color: var(--text-muted); }

.eta-bubble {
  position: absolute;
  top: 120px;
  right: 30%;
  background: var(--card-bg);
  border: 2px solid var(--purple);
  border-radius: 14px;
  padding: 10px 16px;
  text-align: center;
  box-shadow: 0 4px 20px var(--purple-glow);
  animation: floatPin 3.5s ease-in-out infinite;
}
.eta-num { display: block; font-size: 22px; font-weight: 800; color: var(--purple); }
.eta-label { font-size: 11px; color: var(--text-muted); font-weight: 600; }
@keyframes floatPin {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Phone mockup */
.phone-mockup {
  position: absolute;
  right: 0;
  top: 20px;
  z-index: 2;
}
.phone-frame {
  width: 220px;
  height: 440px;
  background: var(--card-bg);
  border-radius: 36px;
  border: 8px solid #1E1B4B;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 24px;
  background: #1E1B4B;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}
.phone-screen {
  padding: 32px 12px 12px;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(160deg, #F5F3FF 0%, #EDE9FE 100%);
}
body.dark .phone-screen { background: linear-gradient(160deg, #1A1040 0%, #0F0A1E 100%); }
.phone-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
body.dark .phone-search { background: #2D2060; color: #C4B5FD; }
.phone-plus { margin-left: auto; font-weight: 700; color: var(--purple); }

.phone-map {
  height: 120px;
  background: #E0E7FF;
  border-radius: 10px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
body.dark .phone-map { background: #2D2060; }
.map-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(124,58,237,0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(124,58,237,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}
.map-route {
  position: absolute;
  top: 30px; left: 30px; right: 30px; bottom: 30px;
  border: 3px solid var(--purple);
  border-radius: 50%;
  opacity: .4;
}
.map-pin { position: absolute; font-size: 16px; }
.map-pin.start { bottom: 20px; left: 20px; color: var(--green); }
.map-pin.end { top: 15px; right: 20px; color: var(--purple); }

.driver-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
body.dark .driver-card { background: #2D2060; }
.driver-avatar i { font-size: 32px; color: var(--purple-light); }
.driver-info { flex: 1; }
.driver-info strong { display: block; font-size: 12px; font-weight: 700; }
.driver-info span { display: block; font-size: 10px; color: var(--text-muted); }
.driver-plate { font-size: 10px !important; font-weight: 600; color: var(--purple) !important; }
.driver-rating { font-size: 11px; font-weight: 700; white-space: nowrap; }

.driver-actions {
  display: flex; gap: 8px;
  justify-content: center;
  margin-bottom: 8px;
}
.driver-actions button {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  background: white;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
body.dark .driver-actions button { background: #2D2060; border-color: #5B21B6; }
.driver-actions button:hover { background: var(--purple); color: white; border-color: var(--purple); }

.track-btn {
  width: 100%;
  background: var(--gradient);
  color: white;
  border-radius: 10px;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-main);
  transition: all var(--transition);
}
.track-btn:hover { opacity: .9; }

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking-section {
  padding: 0 0 60px;
  background: var(--white);
}
.booking-section .container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}
.booking-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
  padding: 24px;
  transition: background var(--transition);
}
.booking-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition);
  font-family: var(--font-main);
}
.tab:hover { background: var(--purple-bg); color: var(--purple); }
.tab.active { background: var(--gradient); color: white; box-shadow: 0 2px 12px var(--purple-glow); }

.booking-form {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.booking-field {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  transition: border-color var(--transition);
}
.booking-field:focus-within { border-color: var(--purple); }
.field-icon { font-size: 14px; flex-shrink: 0; }
.pickup-icon { color: var(--green); }
.drop-icon { color: var(--purple); }
.booking-field input, .booking-field select {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-main);
  width: 0;
}
.booking-field input::placeholder { color: var(--text-light); font-weight: 400; }
.when-field { min-width: 120px; flex: 0; }
.locate-btn {
  color: var(--purple);
  font-size: 14px;
  flex-shrink: 0;
  padding: 2px;
  transition: all var(--transition);
}
.locate-btn:hover { transform: scale(1.2); }

.swap-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--purple-bg);
  color: var(--purple);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  border: 1.5px solid rgba(124,58,237,0.20);
}
.swap-btn:hover { background: var(--purple); color: white; transform: rotate(180deg); }

.find-ride-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-main);
  transition: all var(--transition);
  box-shadow: 0 4px 16px var(--purple-glow);
  white-space: nowrap;
}
.find-ride-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--purple-glow); }

/* Stats card */
.stats-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background var(--transition);
}
.stat {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.stat-icon {
  font-size: 22px;
  color: var(--purple);
  background: var(--purple-bg);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}
.stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}
.stat span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: 80px 0;
  background: var(--section-bg);
}
.services-header {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}
.services-title-col h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.underline-deco { color: var(--purple); }
.services-title-col p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--purple-glow);
  border-color: var(--purple);
}
.service-card:hover::before { opacity: 0.05; }
.service-card:hover .service-arrow { background: var(--gradient); color: white; }
.service-img {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.service-img img {
  max-height: 80px;
  object-fit: contain;
}
.service-card h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  position: relative;
}
.service-card p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  position: relative;
}
.service-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--purple-bg);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  margin: 10px auto 0;
  transition: all var(--transition);
  position: relative;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}
.how-it-works .section-label { justify-content: center; }
.steps-grid {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  width: 220px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all var(--transition);
  position: relative;
}
.step-card:hover { transform: translateY(-6px); border-color: var(--purple); box-shadow: 0 12px 40px var(--purple-glow); }
.step-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--purple-bg);
  line-height: 1;
  position: absolute;
  top: 16px; left: 20px;
  font-family: var(--font-main);
}
.step-icon {
  font-size: 36px;
  color: var(--purple);
  margin-bottom: 14px;
  position: relative;
}
.step-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.step-arrow { font-size: 24px; color: var(--purple-light); opacity: .5; }

/* ============================================
   SAFETY SECTION
   ============================================ */
.safety-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #EDE9FE 0%, #F5F3FF 100%);
}
body.dark .safety-section { background: linear-gradient(135deg, #1A1040 0%, #150D2E 100%); }
.safety-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.safety-content h2 { font-size: 40px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.safety-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.safety-list { list-style: none; margin-bottom: 32px; }
.safety-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(124,58,237,0.10);
}
.safety-list li:last-child { border-bottom: none; }
.safety-list i { color: var(--green); font-size: 16px; }
.safety-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.safety-badge-big {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 20px 60px var(--purple-glow);
  animation: floatCar 4s ease-in-out infinite;
}
.safety-badge-big i { font-size: 36px; margin-bottom: 8px; }
.safety-badge-big span { font-size: 36px; font-weight: 800; }
.safety-badge-big small { font-size: 14px; opacity: .85; }
.safety-stats { display: flex; gap: 24px; }
.s-stat {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--card-shadow);
}
.s-stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--purple); }
.s-stat span { font-size: 13px; color: var(--text-muted); }

/* ============================================
   DRIVERS SECTION
   ============================================ */
.drivers-section {
  padding: 80px 0;
  background: var(--section-bg);
}
.drivers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.driver-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.driver-earn-card {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 60px var(--purple-glow);
}
.earn-icon { font-size: 60px; margin-bottom: 16px; display: block; }
.driver-earn-card strong { display: block; font-size: 32px; font-weight: 800; margin-bottom: 6px; }
.driver-earn-card span { font-size: 16px; opacity: .85; }
.driver-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 14px; }
.driver-content > p { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.driver-perks { list-style: none; margin-bottom: 32px; }
.driver-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
}
.driver-perks i { color: var(--purple); font-size: 16px; }

/* ============================================
   APP SECTION
   ============================================ */
.app-section {
  padding: 80px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.app-content h2 { font-size: 40px; font-weight: 800; color: white; margin-bottom: 14px; line-height: 1.2; }
.app-content h2 .gradient-text {
  background: linear-gradient(90deg, #DDD6FE, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.app-content p { font-size: 15px; color: rgba(255,255,255,0.80); margin-bottom: 32px; line-height: 1.7; }
.app-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 14px 20px;
  color: white;
  transition: all var(--transition);
}
.store-btn:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.store-btn i { font-size: 28px; }
.store-btn small { display: block; font-size: 11px; opacity: .8; }
.store-btn strong { display: block; font-size: 16px; font-weight: 700; }
.app-visual { display: flex; justify-content: center; }
.app-phone {
  width: 200px; height: 380px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.30);
  border-radius: 36px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.app-screen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: white;
  opacity: .8;
  font-size: 14px;
  font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0F0A1E;
  color: white;
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { color: white; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.7; margin: 14px 0 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  transition: all var(--transition);
}
.social-links a:hover { background: var(--purple); color: white; border-color: var(--purple); }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col h5 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: white; }
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--purple-light); }
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.wa-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: #FF4B4B;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: white;
  border: 2px solid white;
}

/* ============================================
   MOBILE NAV MENU
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--card-bg);
  z-index: 999;
  padding: 100px 32px 32px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { font-size: 18px; padding: 12px 16px; border-radius: 10px; }
.mobile-nav .btn-primary, .mobile-nav .btn-login { margin-top: 16px; display: flex; justify-content: center; }
.mobile-close {
  position: fixed;
  top: 20px; right: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--purple-bg);
  color: var(--purple);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-visuals { height: 380px; width: 100%; }
  .hero-title { font-size: 38px; }
  .booking-section .container { grid-template-columns: 1fr; }
  .safety-inner, .drivers-inner, .app-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .stats-card { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
  .booking-form { flex-direction: column; }
  .booking-field, .when-field { width: 100%; min-width: unset; flex: unset; }
  .find-ride-btn { width: 100%; justify-content: center; }
  .swap-btn { align-self: flex-start; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}
