/*
Theme Name: Bamigbe Network
Theme URI: https://bamigbe.com
Author: Mehedi H Sajal
Author URI: https://bamigbe.com
Description: A premium WordPress theme for Bamigbe Network — Move What Matters. Rent What Moves You. Fast, Secure Global Delivery & Car Rental service.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bamigbe
Tags: one-page, custom-logo, custom-header, custom-background, featured-images, threaded-comments
*/

/* ========================================
   Bamigbe Network — Premium Redesign
   ======================================== */

:root {
  --primary: #6C3CE1;
  --primary-dark: #5429C0;
  --primary-light: #8B5CF6;
  --orange: #EE581F;
  --orange-dark: #D44A15;
  --orange-light: #F47040;
  --blue: #0D2B6B;
  --blue-dark: #091E4A;
  --blue-light: #1F4089;
  --accent: #06D6A0;
  --accent-dark: #05B888;
  --dark: #0F0F1A;
  --dark-2: #1A1A2E;
  --dark-3: #25253D;
  --gray-100: #F7F7FB;
  --gray-200: #EDEDF5;
  --gray-300: #D1D1E0;
  --gray-400: #9595B0;
  --gray-500: #6B6B8A;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, #6C3CE1, #1F4089, #06D6A0);
  --gradient-2: linear-gradient(135deg, #6C3CE1, #1F4089, #06D6A0);
  --shadow-sm: 0 2px 8px rgba(15, 15, 26, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 15, 26, 0.1);
  --shadow-lg: 0 20px 60px rgba(15, 15, 26, 0.15);
  --shadow-glow: 0 0 40px rgba(31, 64, 137, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(238, 88, 31, 0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(238, 88, 31, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--gray-300);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-sm { padding: 8px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.01);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

/* Dark navbar for pages with dark hero */
.page-dark .navbar:not(.scrolled) .logo {
  color: var(--white);
}
.page-dark .navbar:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.75);
}
.page-dark .navbar:not(.scrolled) .nav-links a:hover {
  color: var(--white);
}
.page-dark .navbar:not(.scrolled) .mobile-toggle span {
  background: var(--white);
}
.page-dark .navbar:not(.scrolled) .btn-primary {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}
.page-dark .navbar:not(.scrolled) .btn-primary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark);
}

.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--gray-500);
  position: relative;
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #F7F3FF 0%, #EEF4FF 35%, #FFFFFF 55%, #F0FFF8 100%);
  padding-top: 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.shape-1 {
  width: 600px;
  height: 600px;
  background: rgba(108, 60, 225, 0.15);
  top: -200px;
  right: -100px;
}
.shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(6, 214, 160, 0.12);
  bottom: -100px;
  left: -100px;
}
.shape-3 {
  width: 300px;
  height: 300px;
  background: rgba(31, 64, 137, 0.15);
  top: 50%;
  left: 40%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 64, 137, 0.1);
  border: 1px solid rgba(31, 64, 137, 0.22);
  color: var(--blue);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  color: var(--blue);
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
}
.stat span {
  font-size: 0.825rem;
  color: var(--gray-400);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-300);
}

/* Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 240px;
  background: var(--dark);
  border-radius: 30px;
  padding: 8px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 18px;
  background: var(--dark);
  border-radius: 0 0 12px 12px;
  z-index: 5;
}

.phone-screen {
  background: var(--gray-100);
  border-radius: 23px;
  padding: 36px 14px 14px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-header-mock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.85rem;
}

.app-logo-img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: cover;
}

.app-card-mock {
  background: white;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: var(--transition);
  animation: cardFloat 3s ease-in-out infinite;
}
.app-card-mock:nth-child(3) { animation-delay: 0.5s; }
.app-card-mock:nth-child(4) { animation-delay: 1s; }

.card-icon {
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-text {
  flex: 1;
  font-weight: 600;
  font-size: 0.75rem;
}

.card-status {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  background: var(--gray-200);
  color: var(--gray-500);
  white-space: nowrap;
}
.card-status.active {
  background: rgba(31, 64, 137, 0.14);
  color: var(--blue);
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--gray-400);
  border-radius: 14px;
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.scroll-mouse:hover {
  opacity: 1;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 4px;
  position: absolute;
  top: 8px;
  animation: mouseScroll 1.8s ease-in-out infinite;
}

@keyframes mouseScroll {
  0% { top: 8px; opacity: 1; }
  50% { top: 22px; opacity: 0.3; }
  100% { top: 8px; opacity: 1; }
}

/* ---- Floating Animations ---- */
@keyframes floatMain {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatSlowReverse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108, 60, 225, 0.15); }
  50% { box-shadow: 0 0 0 16px rgba(108, 60, 225, 0); }
}

.float-main { animation: floatMain 4s ease-in-out infinite; }
.float-slow { animation: floatSlow 5s ease-in-out infinite; }
.float-slow-reverse { animation: floatSlowReverse 5s ease-in-out infinite; }

/* ---- Hero Phones (Real Screenshots) ---- */
.hero-phones {
  position: relative;
  width: 320px;
  height: 440px;
  margin: 0 auto;
}

.hero-phone {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 15, 26, 0.2), 0 0 40px rgba(108, 60, 225, 0.1);
}

.hero-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone-back {
  width: 200px;
  height: 400px;
  top: 30px;
  left: 0;
  z-index: 1;
  opacity: 0.7;
  transform-origin: center;
}

.hero-phone-front {
  width: 220px;
  height: 430px;
  top: 0;
  right: 0;
  z-index: 2;
  box-shadow: 0 24px 60px rgba(15, 15, 26, 0.25), 0 0 50px rgba(108, 60, 225, 0.12);
}

/* ---- Animated Car Transition ---- */
.car-anim-section {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(180deg, #E8F0FF 0%, #D6E4F7 60%, #C2C2CC 100%);
}

/* Sky & Clouds */
.car-anim-sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.car-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  height: 20px;
}
.car-cloud::before {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.car-cloud-1 {
  width: 80px;
  top: 30px;
  animation: cloudDrift 25s linear infinite;
}
.car-cloud-1::before {
  width: 40px;
  height: 30px;
  top: -15px;
  left: 20px;
}

.car-cloud-2 {
  width: 60px;
  top: 55px;
  animation: cloudDrift 35s linear infinite;
  animation-delay: -12s;
  opacity: 0.5;
}
.car-cloud-2::before {
  width: 30px;
  height: 22px;
  top: -12px;
  left: 15px;
}

.car-cloud-3 {
  width: 100px;
  top: 20px;
  animation: cloudDrift 30s linear infinite;
  animation-delay: -6s;
  opacity: 0.6;
}
.car-cloud-3::before {
  width: 50px;
  height: 35px;
  top: -18px;
  left: 25px;
}

@keyframes cloudDrift {
  0% { left: -120px; }
  100% { left: calc(100% + 20px); }
}

/* City Skyline */
.car-anim-city {
  position: absolute;
  bottom: 70px;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
}

.city-skyline {
  width: 100%;
  height: 100%;
}

/* Road */
.car-anim-road {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  height: 50px;
}

.road-surface {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: #555;
  border-top: 3px solid #777;
}

.road-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #FFD700 0px,
    #FFD700 30px,
    transparent 30px,
    transparent 60px
  );
  animation: roadScroll 1.2s linear infinite;
}

@keyframes roadScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-60px); }
}

/* Ground */
.car-anim-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: #4A7C59;
}

/* Vehicles */
.car-vehicle {
  position: absolute;
  bottom: 18px;
  z-index: 5;
}

.car-vehicle svg {
  display: block;
}

/* Rideshare Car 1 — Black sedan, drives right */
.car-ride1 {
  width: 95px;
  animation: rideRight1 9s linear infinite;
}
.car-ride1 svg {
  animation: vehicleBounce 0.4s ease-in-out infinite;
}

@keyframes rideRight1 {
  0% { left: -130px; }
  100% { left: calc(100% + 40px); }
}

/* Rideshare Car 2 — White sedan, drives left */
.car-ride2 {
  width: 85px;
  animation: rideLeft 11s linear infinite;
  animation-delay: -3s;
  bottom: 26px;
}
.car-ride2 svg {
  transform: scaleX(-1);
  animation: vehicleBounceMirror 0.38s ease-in-out infinite;
}

@keyframes rideLeft {
  0% { left: calc(100% + 40px); }
  100% { left: -120px; }
}

/* Rideshare Car 3 — Blue compact, drives right slower */
.car-ride3 {
  width: 72px;
  animation: rideRight2 13s linear infinite;
  animation-delay: -6s;
  bottom: 20px;
}
.car-ride3 svg {
  animation: vehicleBounce 0.36s ease-in-out infinite;
  animation-delay: 0.15s;
}

@keyframes rideRight2 {
  0% { left: -100px; }
  100% { left: calc(100% + 40px); }
}

/* Vehicle bounce (simulates road bumps) */
@keyframes vehicleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1.5px); }
}

@keyframes vehicleBounceMirror {
  0%, 100% { transform: scaleX(-1) translateY(0); }
  50% { transform: scaleX(-1) translateY(-1.5px); }
}

/* ---- App Showcase Section ---- */
.app-showcase {
  background: var(--white);
  padding: 120px 0;
}

.showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-text h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.showcase-text p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 28px;
}

.showcase-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.showcase-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  transition: transform 0.3s ease;
}

.showcase-feat:hover {
  transform: translateX(4px);
}

.showcase-feat svg {
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.showcase-feat:hover svg {
  transform: scale(1.3);
}

.showcase-phones {
  position: relative;
  width: 100%;
  height: 480px;
}

.showcase-phone {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 15, 26, 0.18);
}

.showcase-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-phone-1 {
  width: 190px;
  height: 380px;
  top: 50px;
  left: 10%;
  z-index: 1;
  opacity: 0.75;
}

.showcase-phone-2 {
  width: 220px;
  height: 430px;
  top: 20px;
  right: 10%;
  z-index: 2;
  box-shadow: 0 24px 60px rgba(15, 15, 26, 0.22), 0 0 40px rgba(108, 60, 225, 0.08);
}

/* ---- Download CTA Section ---- */
.download-cta {
  background: var(--blue);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.dl-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.dl-bg-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(238, 88, 31, 0.1);
  top: -150px;
  left: -100px;
}

.dl-bg-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(31, 64, 137, 0.12);
  bottom: -100px;
  right: -100px;
}

.dl-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto 60px;
}

.dl-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.dl-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 32px;
}

.dl-store-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.dl-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 14px;
  transition: all 0.35s ease;
}

.dl-store-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.dl-store-btn svg {
  opacity: 0.9;
  flex-shrink: 0;
}

.dl-store-btn small {
  display: block;
  font-size: 0.65rem;
  opacity: 0.6;
  line-height: 1;
  text-align: left;
}

.dl-store-btn strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  text-align: left;
}

/* Phones Row */
.dl-phones-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.dl-phone {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.dl-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dl-phone-center {
  width: 200px;
  height: 380px;
  z-index: 3;
  box-shadow: 0 -10px 50px rgba(238, 88, 31, 0.15), 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.dl-phone-side {
  width: 160px;
  height: 300px;
  opacity: 0.6;
  z-index: 1;
}

/* ---- Section Base ---- */
.section {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 64px;
}

/* ---- Section Decorative Backgrounds ---- */
.section-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.decor-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.decor-circle-1 {
  width: 350px;
  height: 350px;
  background: rgba(108, 60, 225, 0.06);
  top: -80px;
  right: -80px;
}

.decor-circle-2 {
  width: 250px;
  height: 250px;
  background: rgba(6, 214, 160, 0.06);
  bottom: -60px;
  left: -60px;
}

.decor-circle-3 {
  width: 400px;
  height: 400px;
  background: rgba(31, 64, 137, 0.05);
  top: 50%;
  right: -150px;
  transform: translateY(-50%);
}

.decor-circle-4 {
  width: 300px;
  height: 300px;
  background: rgba(108, 60, 225, 0.05);
  top: -80px;
  left: -80px;
}

.decor-circle-5 {
  width: 200px;
  height: 200px;
  background: rgba(6, 214, 160, 0.06);
  bottom: -40px;
  right: -40px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(108, 60, 225, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.policy-hero .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.section-header h2,
.split-text h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.section-closing {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  text-align: center;
  max-width: 640px;
  margin: 2.5rem auto 0;
}

/* ---- Hero Secondary Subtitle ---- */
.hero-subtitle-secondary {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.8;
  max-width: 540px;
  margin-top: 4px;
}

/* ---- Core Services ---- */
.services {
  background: var(--gray-100);
}

/* ---- Service Split (Alternating Layout) ---- */
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.service-split:last-of-type {
  margin-bottom: 0;
}

.service-split-reverse {
  direction: rtl;
}
.service-split-reverse > * {
  direction: ltr;
}

.service-split-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-split:hover .service-split-image img {
  transform: scale(1.04);
}

.service-split-text {
  padding: 10px 0;
}

.service-split-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(13, 43, 107, 0.1), rgba(238, 88, 31, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-split:hover .service-split-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-split-text h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.service-split-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.service-split-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-split-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
}
.service-split-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .service-split {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 56px;
  }
  .service-split-reverse {
    direction: ltr;
  }
  .service-split-image {
    aspect-ratio: 16/10;
  }
  .service-split-text h3 {
    font-size: 1.35rem;
  }
}

.features-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.section-cta-text {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 32px;
  letter-spacing: -0.01em;
}

/* ---- About / Features Grid ---- */
.about {
  background: var(--gray-100);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(108, 60, 225, 0.12);
  border-color: rgba(108, 60, 225, 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(108, 60, 225, 0.1), rgba(6, 214, 160, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(-5deg);
  background: linear-gradient(135deg, rgba(108, 60, 225, 0.18), rgba(6, 214, 160, 0.18));
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ---- Split Content (Delivery & Rental) ---- */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-content.reverse {
  direction: rtl;
}
.split-content.reverse > * {
  direction: ltr;
}

.split-text p {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.7;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark-2);
}
.check-list li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}
.check-list li div {
  flex: 1;
}
.check-list li div strong {
  color: var(--dark);
}

.check-list.small li {
  font-size: 0.875rem;
  gap: 8px;
  align-items: flex-start;
}
.check-list.small li svg {
  margin-top: 3px;
}

.two-col-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.two-col-features h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}

/* ---- Visual Cards (Delivery) ---- */
.visual-card {
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  position: relative;
  min-height: 400px;
}

.delivery-visual {
  background: linear-gradient(160deg, #F7F3FF, #E8F0FF);
}

.float-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}
.float-card:hover {
  transform: translateX(6px);
}

.fc-icon { font-size: 1.5rem; }
.float-card strong {
  display: block;
  font-size: 0.9rem;
}
.float-card span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.delivery-illustration {
  position: absolute;
  bottom: 40px;
  left: 30px;
  right: 30px;
  height: 60px;
}

.route-line {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
  opacity: 0.4;
}

.route-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--blue);
  background: var(--white);
}
.dot-start { left: 10px; }
.dot-end { right: 10px; }

.truck-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  animation: truckMove 4s ease-in-out infinite;
}

@keyframes truckMove {
  0% { left: 30px; }
  50% { left: calc(100% - 60px); }
  100% { left: 30px; }
}

/* ---- Visual Cards (Rental) ---- */
.rental-visual {
  background: linear-gradient(160deg, #F0FFF8, #E0FFEF);
}

.car-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.car-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
}
.car-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.car-card.featured {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(6, 214, 160, 0.2);
}

.car-emoji { font-size: 2rem; }

.car-info {
  flex: 1;
}
.car-info strong {
  display: block;
  font-size: 0.95rem;
}
.car-info span {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.car-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(31, 64, 137, 0.12);
  color: var(--blue);
}
.car-card.featured .car-badge {
  background: rgba(6, 214, 160, 0.15);
  color: var(--accent-dark);
}

/* ---- Safety Grid ---- */
.safety {
  background: var(--gray-100);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.safety-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition);
}
.safety-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(108, 60, 225, 0.1);
}

.safety-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(108, 60, 225, 0.08), rgba(31, 64, 137, 0.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
}

.safety-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.safety-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ---- How It Works ---- */
/* ---- How It Works — Dark Immersive Design ---- */
.how-it-works {
  background: var(--blue);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

#hiw-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hiw-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108, 60, 225, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 60, 225, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.how-it-works .container {
  position: relative;
  z-index: 1;
}

.how-it-works .section-header .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.how-it-works .section-header h2 {
  color: var(--white);
}

.how-it-works .section-header h2 .gradient-text {
  background: linear-gradient(135deg, #A78BFA, #60A5FA, #34D399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.how-it-works .section-header .section-description {
  color: rgba(255, 255, 255, 0.75);
}

/* Tabs */
.hiw-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.hiw-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
}

.hiw-tab:hover {
  border-color: rgba(108, 60, 225, 0.4);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(108, 60, 225, 0.08);
}

.hiw-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--blue));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(108, 60, 225, 0.35);
}

.hiw-tab svg {
  opacity: 0.7;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.hiw-tab:hover svg {
  transform: scale(1.2) rotate(-8deg);
}

.hiw-tab.active svg {
  opacity: 1;
}

/* Timeline */
.hiw-timeline {
  position: relative;
  display: none;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 50px;
}

.hiw-timeline.active {
  display: block;
}

.hiw-timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent), transparent);
  opacity: 0.4;
}

/* Timeline Item */
.hiw-timeline-item {
  position: relative;
  margin-bottom: 36px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  opacity: 0;
  transform: translateX(30px);
  animation: hiwSlideIn 0.5s ease forwards;
}

.hiw-timeline-item:nth-child(2) { animation-delay: 0s; }
.hiw-timeline-item:nth-child(3) { animation-delay: 0.12s; }
.hiw-timeline-item:nth-child(4) { animation-delay: 0.24s; }
.hiw-timeline-item:nth-child(5) { animation-delay: 0.36s; }

.hiw-timeline-item:last-child {
  margin-bottom: 0;
}

@keyframes hiwSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Node (circle on timeline) */
.hiw-node {
  position: absolute;
  left: -50px;
  top: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hiw-node-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(108, 60, 225, 0.35);
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
}

.hiw-timeline-item:hover .hiw-node-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 6px 24px rgba(108, 60, 225, 0.5);
}

.hiw-node-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  border: 2px solid rgba(108, 60, 225, 0.3);
  animation: nodePulse 2.5s ease-in-out infinite;
}

.hiw-timeline-item:nth-child(3) .hiw-node-pulse { animation-delay: 0.5s; }
.hiw-timeline-item:nth-child(4) .hiw-node-pulse { animation-delay: 1s; }
.hiw-timeline-item:nth-child(5) .hiw-node-pulse { animation-delay: 1.5s; }

@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0.1; }
}

/* Card */
.hiw-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.hiw-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.hiw-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(108, 60, 225, 0.12), transparent 70%);
  pointer-events: none;
}

.hiw-card-step {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 8px;
}

.hiw-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.hiw-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Closing */
.hiw-closing {
  text-align: center;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.hiw-closing-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(108, 60, 225, 0.15), transparent 70%);
  pointer-events: none;
}

.hiw-closing h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.hiw-closing p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

.hiw-closing .section-cta-text {
  color: var(--accent);
}

/* ---- Careers ---- */
.careers {
  background: var(--white);
  padding: 120px 0;
}

.careers-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.careers-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.careers-cta p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 20px;
}

/* ---- Contact Page ---- */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(108, 60, 225, 0.08);
  border-color: rgba(108, 60, 225, 0.15);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(108, 60, 225, 0.1), rgba(6, 214, 160, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--blue);
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-email {
  display: inline-block;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.contact-email:hover {
  color: var(--primary-dark);
}

/* ---- Contact Form ---- */
.contact-form {
  margin-top: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--white);
  color: var(--dark);
  transition: var(--transition);
  outline: none;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 60, 225, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
  cursor: pointer;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ---- Why Choose Banner ---- */
.why-choose {
  padding: 60px 0 100px;
}

.why-banner {
  background: var(--blue);
  border-radius: var(--radius-xl);
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.why-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(31, 64, 137, 0.2);
  border-radius: 50%;
  filter: blur(80px);
}
.why-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(6, 214, 160, 0.15);
  border-radius: 50%;
  filter: blur(80px);
}

.why-content {
  position: relative;
  z-index: 2;
}

.why-content h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  margin-bottom: 40px;
}

.why-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.owner-intro {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 12px;
  font-style: italic;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 50px;
}

.why-item h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}


/* ---- Policy Page ---- */
.policy-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 40%, #071838 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.policy-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(108, 60, 225, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.policy-hero-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.policy-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 16px 0 12px;
  letter-spacing: -0.03em;
}

.policy-hero-content .policy-meta {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.policy-content {
  padding: 60px 0 80px;
}

.policy-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.policy-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-2);
  margin: 24px 0 10px;
}

.policy-section p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 12px;
}

.policy-section ul {
  list-style: disc;
  padding-left: 24px;
  margin: 12px 0 16px;
}

.policy-section ul li {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 6px;
}

.policy-section ul li strong {
  color: var(--dark);
}

.contact-block {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 12px;
  border: 1px solid var(--gray-200);
}

.contact-block p {
  margin-bottom: 6px;
}

.contact-block a {
  color: var(--primary);
  font-weight: 600;
}

.contact-block a:hover {
  color: var(--primary-dark);
}

/* ---- About Page ---- */
.about-lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.7;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 28px 0 32px;
}

.about-value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.about-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(108, 60, 225, 0.08);
  border-color: rgba(108, 60, 225, 0.15);
}

.about-value-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(108, 60, 225, 0.1), rgba(6, 214, 160, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.about-value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.about-value-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 0;
}

.about-closing {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  padding: 24px 0 0;
  border-top: 1px solid var(--gray-200);
}

@media (max-width: 600px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Footer ---- */
.footer {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-brand .logo {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.footer-links-group h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-group a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-links-group a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
}

.footer-reg {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

/* ---- Simple Footer ---- */
.footer-simple {
  background: var(--blue);
  padding: 44px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-simple-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-simple-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.footer-simple-links a:hover {
  color: var(--white);
}

.footer-simple-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-simple-social a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-simple-social a:hover {
  color: var(--white);
}

.footer-simple-copy {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.footer-simple-reg {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

/* ---- Micro Animations ---- */

/* Staggered card entrance */
.feature-card,
.safety-card,
.about-value-card,
.contact-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease,
              box-shadow 0.4s ease, border-color 0.4s ease;
}
.feature-card.card-visible,
.safety-card.card-visible,
.about-value-card.card-visible,
.contact-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Showcase features stagger */
.showcase-feat {
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.showcase-feat.card-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Section tag slide-in */
.section-tag {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.section-tag:hover {
  transform: scale(1.05);
}

/* Hero badge pulse */
.hero-badge {
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31, 64, 137, 0.15); }
  50% { box-shadow: 0 0 0 10px rgba(31, 64, 137, 0); }
}

/* Safety card hover icon lift */
.safety-icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
}
.safety-card:hover .safety-icon {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(108, 60, 225, 0.12);
}

/* Safety card enhanced hover */
.safety-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}
.safety-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* About value card icon */
.about-value-icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.about-value-card:hover .about-value-icon {
  transform: scale(1.15) rotate(5deg);
}

/* Download store button icon bounce */
.dl-store-btn svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dl-store-btn:hover svg {
  transform: scale(1.2);
}

/* Gradient text shimmer */
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.gradient-text {
  background-size: 200% 200%;
  animation: shimmer 4s ease-in-out infinite;
}

/* Contact card icon */
.contact-card-icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-card:hover .contact-card-icon {
  transform: translateY(-3px) scale(1.12);
}

/* ---- Animations ---- */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-left"] {
  transform: translateX(40px);
}
[data-animate="fade-right"] {
  transform: translateX(-40px);
}
[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---- Drive Page ---- */
.drive-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 40%, #071838 100%);
  position: relative;
  overflow: hidden;
}

.drive-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(238, 88, 31, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(31, 64, 137, 0.1) 0%, transparent 50%);
}

.drive-hero-content {
  position: relative;
  max-width: 720px;
}

.drive-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin: 16px 0 12px;
}

.drive-hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 12px;
}

.drive-hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.drive-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 20px;
}

.drive-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.drive-highlight svg {
  color: var(--accent);
  flex-shrink: 0;
}

.drive-hero-note {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
}

/* Steps Section */
.drive-steps-section {
  background: var(--gray-50);
}

.drive-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.drive-step-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drive-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.drive-step-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  font-family: var(--font-heading);
}

.drive-step-icon {
  width: 52px;
  height: 52px;
  background: rgba(238, 88, 31, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.drive-step-card h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.drive-step-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.drive-step-card ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
}

.drive-step-card ul li {
  color: var(--gray-500);
  font-size: 0.93rem;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.drive-step-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.drive-step-note {
  font-size: 0.88rem !important;
  color: var(--gray-400) !important;
  font-style: italic;
  border-top: 1px solid var(--gray-100);
  padding-top: 10px;
  margin-top: 6px;
}

.drive-step-btns {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.drive-store-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(238, 88, 31, 0.08);
  transition: background 0.2s ease;
}

.drive-store-link:hover {
  background: rgba(238, 88, 31, 0.15);
}

/* Why Drive Section */
.drive-why-section {
  background: #fff;
}

.drive-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.drive-why-card {
  background: var(--gray-50);
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid var(--gray-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drive-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.drive-why-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}

.drive-why-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.drive-why-card p {
  color: var(--gray-500);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* Requirements Section */
.drive-req-section {
  background: var(--gray-50);
}

.drive-req-wrapper {
  max-width: 600px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
}

.drive-req-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drive-req-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--dark);
  font-size: 1rem;
}

.drive-req-list li:last-child {
  border-bottom: none;
}

.drive-req-list li svg {
  flex-shrink: 0;
}

.drive-req-note {
  color: var(--gray-400);
  font-size: 0.88rem;
  margin-top: 16px;
  font-style: italic;
}

/* CTA Section */
.drive-cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 50%, #071838 100%);
  padding: 80px 0;
}

.drive-cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.drive-cta-box h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #fff;
  margin-bottom: 12px;
}

.drive-cta-box > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.drive-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.drive-cta-actions span {
  background: rgba(238, 88, 31, 0.15);
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(238, 88, 31, 0.25);
}

.drive-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.drive-cta-btns .dl-store-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.drive-cta-btns .dl-store-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.drive-cta-launch {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Legal Section */
.drive-legal-section {
  background: var(--gray-50);
  padding: 40px 0;
}

.drive-legal-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.drive-legal-box h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.drive-legal-box p {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.drive-legal-box address {
  font-style: normal;
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.drive-legal-disclaimer {
  font-size: 0.85rem !important;
  color: var(--gray-400) !important;
  font-style: italic;
  border-top: 1px solid var(--gray-200);
  padding-top: 12px;
  margin-top: 4px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-subtitle,
  .hero-subtitle-secondary {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .split-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-content.reverse {
    direction: ltr;
  }
  .why-items {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .showcase-phones {
    height: 400px;
    max-width: 420px;
    margin: 0 auto;
  }
  .showcase-features {
    justify-items: center;
  }
  .car-anim-section {
    height: 220px;
  }
  .car-ride1 { width: 80px; }
  .car-ride2 { width: 72px; }
  .car-ride3 { width: 60px; }
  .dl-phone-center {
    width: 180px;
    height: 340px;
  }
  .dl-phone-side {
    width: 140px;
    height: 270px;
  }
  .hero-phones {
    width: 280px;
    height: 380px;
    margin: 0 auto;
  }
  .hero-phone-front {
    width: 190px;
    height: 370px;
  }
  .hero-phone-back {
    width: 170px;
    height: 340px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .drive-steps-grid {
    gap: 20px;
  }
  .drive-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-actions .btn {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .safety-grid {
    grid-template-columns: 1fr;
  }
  .two-col-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-stats {
    flex-wrap: wrap;
  }
  .why-banner {
    padding: 36px 24px;
  }
  .why-items {
    grid-template-columns: 1fr;
  }
  .features-grid.three-col {
    grid-template-columns: 1fr;
  }
  .hiw-tabs {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .hiw-tab {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .hiw-timeline {
    padding-left: 40px;
  }
  .hiw-node {
    left: -40px;
  }
  .hiw-node-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .hiw-node-icon svg {
    width: 18px;
    height: 18px;
  }
  .hiw-card {
    padding: 22px 20px;
  }
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .section {
    padding: 70px 0;
  }
  .showcase-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .showcase-phones {
    height: 340px;
    max-width: 340px;
    margin: 0 auto;
  }
  .showcase-phone-1 {
    width: 150px;
    height: 300px;
    left: 0;
  }
  .showcase-phone-2 {
    width: 180px;
    height: 350px;
    right: 0;
  }
  .car-anim-section {
    height: 200px;
  }
  .car-ride1 { width: 70px; }
  .car-ride2 { width: 62px; }
  .car-ride3 { width: 50px; }
  .car-anim-city { height: 150px; }
  .dl-content {
    margin-bottom: 40px;
  }
  .dl-phone-center {
    width: 160px;
    height: 300px;
  }
  .dl-phone-side {
    width: 120px;
    height: 230px;
  }
  .dl-phones-row {
    gap: 14px;
  }
  .showcase-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-phones {
    width: 240px;
    height: 320px;
  }
  .hero-phone-front {
    width: 160px;
    height: 310px;
  }
  .hero-phone-back {
    width: 140px;
    height: 280px;
    top: 20px;
  }
  .drive-steps-grid {
    grid-template-columns: 1fr;
  }
  .drive-why-grid {
    grid-template-columns: 1fr;
  }
  .drive-hero {
    padding: 120px 0 50px;
  }
  .drive-hero-highlights {
    flex-direction: column;
    gap: 8px;
  }
  .drive-cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .drive-req-wrapper {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .car-anim-section {
    height: 170px;
  }
  .car-ride1 { width: 65px; }
  .car-ride2 { width: 52px; }
  .car-ride3 { width: 42px; }
  .car-anim-city { height: 120px; }
  .road-surface { height: 32px; }
  .dl-store-buttons {
    flex-direction: column;
    align-items: center;
  }
  .dl-store-btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
  .dl-phone-center {
    width: 140px;
    height: 260px;
  }
  .dl-phone-side {
    width: 100px;
    height: 200px;
  }
  .dl-phones-row {
    gap: 10px;
  }
  .footer-simple-links {
    flex-direction: column;
    gap: 12px;
  }
  .policy-hero {
    padding: 120px 0 40px;
  }
  .policy-hero-content h1 {
    font-size: 1.75rem;
  }
  .hero-phones {
    width: 200px;
    height: 280px;
  }
  .hero-phone-front {
    width: 140px;
    height: 270px;
  }
  .hero-phone-back {
    width: 120px;
    height: 240px;
  }
  .drive-hero {
    padding: 110px 0 40px;
  }
  .drive-hero h1 {
    font-size: 1.75rem;
  }
  .drive-step-card {
    padding: 24px 20px;
  }
  .drive-step-number {
    font-size: 2.2rem;
  }
  .drive-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* =============================================
   UBER-STYLE HOMEPAGE REDESIGN
   ============================================= */

/* Dark Button */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
}
.btn-dark:hover {
  background: #333;
}
.btn-dark.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: 50px;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #000;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid #000;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-outline-dark:hover {
  background: #000;
  color: #fff;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ---- Uber Hero ---- */
.uber-hero {
  padding: 120px 0 80px;
  background: #fff;
}

.uber-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.uber-hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}

.uber-hero-highlight {
  color: #000;
}

.uber-hero-options {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.uber-hero-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #888;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}
.uber-hero-option.active {
  color: #000;
  border-bottom-color: #000;
}
.uber-hero-option:hover {
  color: #000;
}

.uber-hero-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.uber-input-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 14px 16px;
}

.uber-input-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-black { background: #000; }
.dot-gray { background: #ccc; }

.uber-input-row input {
  border: none;
  background: transparent;
  font-size: 0.95rem;
  color: #333;
  outline: none;
  width: 100%;
  font-family: var(--font-main);
}
.uber-input-row input::placeholder {
  color: #999;
}

.uber-hero-btn {
  width: 100%;
  justify-content: center;
}

.uber-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.uber-hero-img {
  width: 320px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* ---- Suggestions ---- */
.uber-suggestions {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.uber-suggestions h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 28px;
}

.uber-suggest-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.uber-suggest-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 16px 24px;
  text-decoration: none;
  color: #000;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s ease;
}
.uber-suggest-card:hover {
  background: #eaeaea;
}

.uber-suggest-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Split Sections ---- */
.uber-split {
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}

.uber-split-alt {
  background: #f9f9f9;
}

.uber-split-dark {
  background: #000;
  border-bottom: none;
}
.uber-split-dark .uber-split-text h2 {
  color: #fff;
}
.uber-split-dark .uber-split-text p {
  color: rgba(255,255,255,0.65);
}

.uber-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.uber-split-container.reverse {
  direction: rtl;
}
.uber-split-container.reverse > * {
  direction: ltr;
}

.uber-split-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #000;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.uber-split-text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 28px;
}

.uber-split-visual {
  display: flex;
  justify-content: center;
}

.uber-split-phone {
  width: 280px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.uber-split-phone img {
  width: 100%;
  display: block;
}

.uber-split-dark .uber-split-phone {
  box-shadow: 0 16px 48px rgba(255,255,255,0.05);
}

/* ---- How It Works (Uber style) ---- */
.uber-hiw {
  background: #f9f9f9;
  padding: 100px 0;
}

.uber-hiw .section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #000;
  margin-bottom: 12px;
}

.uber-hiw .section-description {
  color: #666;
}

/* HIW Tabs */
.uber-hiw-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.uber-hiw-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid #eee;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  font-family: var(--font-main);
  transition: all 0.2s ease;
}
.uber-hiw-tab:hover {
  border-color: #ccc;
  color: #000;
}
.uber-hiw-tab.active {
  background: #000;
  border-color: #000;
  color: #fff;
}

.uber-hiw-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.uber-hiw-grid.active {
  display: grid;
}

.uber-hiw-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #eee;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.uber-hiw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.uber-hiw-num {
  font-size: 2rem;
  font-weight: 800;
  color: #eee;
  margin-bottom: 16px;
  line-height: 1;
}

.uber-hiw-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.uber-hiw-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ---- Careers (Uber style) ---- */
.uber-careers {
  padding: 100px 0;
  background: #fff;
}

.uber-careers .section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #000;
  margin-bottom: 12px;
}

.uber-careers .section-description {
  color: #666;
}

.uber-careers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.uber-career-card {
  padding: 28px 20px;
  border-radius: 16px;
  background: #f9f9f9;
  border: 1px solid #eee;
  transition: transform 0.2s ease;
}
.uber-career-card:hover {
  transform: translateY(-3px);
}

.uber-career-card svg {
  margin-bottom: 16px;
}

.uber-career-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

.uber-career-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
}

.uber-careers-cta {
  text-align: center;
  margin-top: 40px;
}

.uber-careers-note {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 24px;
}

/* ---- App Download Section ---- */
.uber-app-section {
  padding: 80px 0;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}

.uber-app-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #000;
  margin-bottom: 40px;
}

.uber-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.uber-app-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid #eee;
}

.uber-app-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.uber-app-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.uber-app-links {
  display: flex;
  gap: 12px;
}

.uber-app-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}
.uber-app-link:hover {
  background: #333;
}

/* ---- Uber Footer ---- */
.uber-footer {
  background: #000;
  padding: 60px 0 40px;
  color: rgba(255,255,255,0.6);
}

.uber-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.uber-footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.uber-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.uber-footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.uber-footer-col a:hover {
  color: #fff;
}

.uber-footer-social {
  display: flex;
  gap: 16px;
}

.uber-footer-social a {
  color: rgba(255,255,255,0.5);
}
.uber-footer-social a:hover {
  color: #fff;
}

.uber-footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.uber-footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

/* ---- Uber Responsive ---- */
@media (max-width: 1024px) {
  .uber-hero-container {
    gap: 40px;
  }
  .uber-hero-img {
    width: 260px;
  }
  .uber-hiw-grid.active,
  .uber-careers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .uber-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .uber-hero {
    padding: 100px 0 60px;
  }
  .uber-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .uber-hero-options {
    justify-content: center;
  }
  .uber-hero-visual {
    order: -1;
  }
  .uber-hero-img {
    width: 220px;
  }
  .uber-suggest-grid {
    flex-direction: column;
  }
  .uber-split-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .uber-split-container.reverse {
    direction: ltr;
  }
  .uber-split-phone {
    width: 220px;
    margin: 0 auto;
  }
  .uber-split-visual {
    order: -1;
  }
  .uber-hiw-grid.active,
  .uber-careers-grid {
    grid-template-columns: 1fr;
  }
  .uber-hiw-tabs {
    flex-direction: column;
    align-items: center;
  }
  .uber-app-grid {
    grid-template-columns: 1fr;
  }
  .uber-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .uber-hero h1 {
    font-size: 2rem;
  }
  .uber-hero-options {
    gap: 16px;
  }
  .uber-hero-img {
    width: 180px;
  }
  .uber-split-text h2 {
    font-size: 1.5rem;
  }
  .uber-split-phone {
    width: 180px;
  }
  .uber-app-card {
    padding: 24px 20px;
  }
  .uber-app-links {
    flex-direction: column;
  }
  .uber-footer-grid {
    grid-template-columns: 1fr;
  }
}
