/* Scooty Taxi — Landing Page */

:root {
  --orange: #FF8C00;
  --orange-dark: #e67e00;
  --purple: #6A0DAD;
  --purple-light: #8B3FD4;
  --navy: #0A192F;
  --navy-light: #13234a;
  --text: #1a1a2e;
  --text-muted: #5a5a72;
  --white: #ffffff;
  --bg: #fafafa;
  --gradient: linear-gradient(135deg, var(--purple) 0%, var(--orange) 100%);
  --gradient-h: linear-gradient(90deg, var(--purple) 0%, var(--orange) 100%);
  --shadow: 0 8px 32px rgba(10, 25, 47, 0.08);
  --shadow-lg: 0 16px 48px rgba(10, 25, 47, 0.12);
  --shadow-glow: 0 8px 32px rgba(106, 13, 173, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Header ── */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 76px;
  width: auto;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.logo:hover .logo-image {
  transform: scale(1.02);
}

.logo-image-footer {
  height: 68px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--orange);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(106, 13, 173, 0.25);
}

.btn-primary {
  background: var(--gradient-h);
  color: var(--white);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 2px solid #d0d0dc;
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--purple);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.btn-wide {
  width: 100%;
  max-width: 340px;
  padding: 16px 28px;
  font-size: 13px;
}

/* ── Hero ── */

.hero {
  background: linear-gradient(135deg, #f3e8ff 0%, #fce4ec 40%, #fff3e0 100%);
  padding: 48px 6% 64px;
  overflow: hidden;
  position: relative;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.12) 0%, transparent 70%);
}

.hero::after {
  width: 320px;
  height: 320px;
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(106, 13, 173, 0.1) 0%, transparent 70%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(106, 13, 173, 0.1);
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.gradient-text {
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.whatsapp-link:hover {
  color: var(--navy);
}

.whatsapp-link strong {
  color: var(--navy);
  font-weight: 600;
}

.hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(106, 13, 173, 0.12);
  min-height: 380px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
}

.hero-image-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(106, 13, 173, 0.15) 0%, rgba(255, 140, 0, 0.2) 100%),
    linear-gradient(180deg, #ffb347 0%, #ff8c69 35%, #6a0dad 100%);
}

.hero-image-fallback::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 25, 47, 0.35) 100%);
}

.hero-image-fallback::after {
  content: '';
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 140' fill='none'%3E%3Ccircle cx='55' cy='110' r='18' fill='%23333' stroke='%23FF8C00' stroke-width='4'/%3E%3Ccircle cx='145' cy='110' r='18' fill='%23333' stroke='%23FF8C00' stroke-width='4'/%3E%3Cpath d='M40 85h120l-12-45H58L40 85z' fill='%23FF8C00'/%3E%3Crect x='82' y='32' width='28' height='20' rx='3' fill='%236A0DAD'/%3E%3Ccircle cx='100' cy='22' r='14' fill='%231a1a2e'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.9;
}

/* ── Stats Bar ── */

.stats-bar {
  background: var(--navy);
  padding: 28px 6%;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
}

.stat-icon-purple {
  background: rgba(106, 13, 173, 0.35);
  color: #c9a0ff;
}

.stat-icon-orange {
  background: rgba(255, 140, 0, 0.2);
  color: var(--orange);
}

.stat-icon-green {
  background: rgba(46, 125, 50, 0.25);
  color: #81c784;
}

.stat-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.stat-item span {
  font-size: 12px;
  opacity: 0.65;
}

/* ── Features ── */

.features {
  padding: 88px 6%;
  text-align: center;
  background:
    radial-gradient(ellipse at top center, rgba(106, 13, 173, 0.04) 0%, transparent 55%),
    var(--white);
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 48px;
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 36px 24px 32px;
  text-align: center;
  transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-h);
  opacity: 0;
  transition: opacity 0.35s;
}

.feature-card:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
  border-color: transparent;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card-traffic:hover { box-shadow: 0 16px 48px rgba(106, 13, 173, 0.15); }
.feature-card-affordable:hover { box-shadow: 0 16px 48px rgba(255, 140, 0, 0.18); }
.feature-card-safe:hover { box-shadow: 0 16px 48px rgba(106, 13, 173, 0.15); }
.feature-card-eco:hover { box-shadow: 0 16px 48px rgba(46, 125, 50, 0.15); }

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: transform 0.35s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) translateY(-2px);
}

.feature-icon svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 6px 12px rgba(10, 25, 47, 0.1));
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Driver Section ── */

.driver {
  padding: 60px 6%;
  background: var(--bg);
}

.driver-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 50%, #fff0f0 100%);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 140, 0, 0.12);
}

.driver-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.driver-promo-image {
  width: 100%;
  max-width: 480px;
  height: auto;
}

.driver-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.driver-content > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.driver-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.driver-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.65);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.2s, box-shadow 0.2s;
}

.driver-benefits li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.06);
}

.benefit-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

/* ── FAQ ── */

.faq {
  padding: 80px 6%;
  background: var(--white);
  text-align: center;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  text-align: left;
}

.faq-item {
  border: 1px solid #e8e8ee;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.faq-item:hover {
  border-color: rgba(106, 13, 173, 0.2);
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.05);
}

.faq-item[open] {
  border-color: rgba(106, 13, 173, 0.25);
  box-shadow: 0 6px 24px rgba(106, 13, 173, 0.08);
}

.faq-item[open] summary {
  background: rgba(106, 13, 173, 0.04);
  color: var(--purple);
}

.faq-item summary {
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item summary:hover {
  background: #fafafa;
}

.faq-item p {
  padding: 0 20px 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Footer ── */

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 6% 0;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin: 16px 0 20px;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.social-links a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.social-links svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.footer h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  font-size: 13px;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover,
.footer-contact a:hover {
  opacity: 1;
  color: var(--orange);
}

.footer-subscribe p {
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 14px;
}

.subscribe-form {
  display: flex;
  gap: 0;
}

.subscribe-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
}

.subscribe-form input::placeholder {
  color: #999;
}

.btn-subscribe {
  padding: 12px 18px;
  border: none;
  border-radius: 0 50px 50px 0;
  background: var(--gradient-h);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.btn-subscribe:hover {
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  opacity: 0.6;
}

/* ── Scroll reveal ── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .logo-image {
    height: 58px;
  }

  .logo-image-footer {
    height: 56px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 6%;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    min-height: 260px;
  }

  .driver-inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .driver-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}
