/* ═══════════════════════════════════════════════════
   NATURA RIDE — Premium EV Website Stylesheet
   Theme: Dark Eco-Futuristic · Electric Green · Unbounded
═══════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --bg-deep:     #030A05;
  --bg-dark:     #071008;
  --bg-card:     #0C1E0F;
  --bg-card2:    #0F2414;
  --border:      rgba(57, 255, 130, 0.12);
  --border-h:    rgba(57, 255, 130, 0.35);

  --accent:      #39FF82;
  --accent-dim:  #27C45E;
  --accent-glow: rgba(57, 255, 130, 0.18);
  --accent-soft: rgba(57, 255, 130, 0.08);

  --text-white:  #F2F8F4;
  --text-muted:  #7A9B85;
  --text-faint:  #3A5A44;

  --font-display: 'Unbounded', sans-serif;
  --font-body:    'Onest', sans-serif;

  --radius:      16px;
  --radius-sm:   8px;
  --radius-pill: 999px;

  --nav-h:       72px;
  --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

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

.section-pad { padding: 100px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

.accent { color: var(--accent); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #39FF82, #00E05A);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(57, 255, 130, 0.4);
}
.btn-primary:hover::before { opacity: 1; }

.btn-primary span, .btn-primary i { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

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

/* ── SCROLL REVEAL ── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}


/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(3, 10, 5, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.logo-leaf {
  color: var(--accent);
  font-size: 1.4rem;
}

.logo-text { color: var(--text-white); }
.logo-accent { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color var(--transition);
}

.nav-link:hover { color: var(--text-white); }

.nav-btn {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--accent);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  margin-left: 8px;
}

.nav-btn:hover {
  box-shadow: 0 4px 20px var(--accent-glow);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}


/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 130, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 130, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(57, 255, 130, 0.12) 0%, transparent 70%);
  top: -10%; left: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 200, 80, 0.08) 0%, transparent 70%);
  bottom: -5%; right: 5%;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(57, 255, 130, 0.06) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation-delay: -6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 600px;
  padding: 0 0 0 max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.accent-line {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(57, 255, 130, 0.4);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(57, 255, 130, 0.03);
  padding: 20px 0;
  overflow: hidden;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 24px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}

.stat-unit {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--accent);
  margin-left: 3px;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

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

/* Hero Scooter Visual */
.hero-scooter {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  z-index: 1;
  padding-right: 40px;
}

.scooter-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(57, 255, 130, 0.15) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-scooter img {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(57, 255, 130, 0.15));
  animation: scooterFloat 6s ease-in-out infinite;
}

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

.scooter-shadow {
  width: 60%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(57, 255, 130, 0.2) 0%, transparent 70%);
  margin: -10px auto 0;
  filter: blur(10px);
  animation: shadowPulse 6s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% { opacity: 0.8; transform: scaleX(1); }
  50% { opacity: 0.4; transform: scaleX(0.8); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: max(24px, calc((100vw - 1200px) / 2 + 24px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  z-index: 2;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-faint);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ════════════════════════════════════════
   MARQUEE STRIP
════════════════════════════════════════ */
.marquee-strip {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-deep);
}

.marquee-track .dot {
  color: var(--bg-deep);
  opacity: 0.4;
  font-size: 0.5rem;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ════════════════════════════════════════
   PRODUCT FEATURES
════════════════════════════════════════ */
.product {
  background: var(--bg-dark);
  position: relative;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-soft), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(57, 255, 130, 0.08);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.feature-number {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.06;
  line-height: 1;
}


/* ════════════════════════════════════════
   WHY CHOOSE
════════════════════════════════════════ */
.why {
  position: relative;
  background: var(--bg-deep);
  overflow: hidden;
}

.why-bg-accent {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(57, 255, 130, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.savings-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-h);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 32px;
}

.savings-icon {
  width: 56px; height: 56px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.savings-text {
  display: flex;
  flex-direction: column;
}

.savings-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.savings-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.why-item:last-child { border-bottom: none; }
.why-item:hover { padding-left: 8px; }

.why-check {
  width: 34px; height: 34px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition);
}

.why-item:hover .why-check {
  background: var(--accent);
  color: var(--bg-deep);
}

.why-item h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 5px;
}

.why-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ════════════════════════════════════════
   GALLERY
════════════════════════════════════════ */
.gallery { background: var(--bg-dark); }

.gallery-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 750px;
  object-fit: cover;
  display: block;
}

.slide-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--accent);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
}

.gallery-btn {
  width: 46px; height: 46px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-btn:hover {
  background: var(--accent);
  color: var(--bg-deep);
  border-color: var(--accent);
}

.gallery-dots {
  display: flex;
  gap: 8px;
}

.gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-faint);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-dot.active {
  width: 28px;
  border-radius: var(--radius-pill);
  background: var(--accent);
}

/* Color swatches */
.color-section {
  margin-top: 48px;
  text-align: center;
}

.color-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.color-swatches {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.swatch {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.swatch:hover {
  transform: scale(1.15);
  border-color: var(--accent);
}

.swatch span {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.swatch:hover span { opacity: 1; }


/* ════════════════════════════════════════
   SPECIFICATIONS
════════════════════════════════════════ */
.specs { background: var(--bg-deep); }

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

.specs-scooter-wrap {
  position: relative;
  padding: 20px;
}

.specs-scooter-wrap img {
  width: 100%;
  filter: drop-shadow(0 0 40px rgba(57, 255, 130, 0.15));
}

.specs-callout {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-h);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
}

.specs-callout.top-left  { top: 5%; left: 0; }
.specs-callout.top-right { top: 5%; right: 0; }
.specs-callout.bottom-left  { bottom: 5%; left: 0; }
.specs-callout.bottom-right { bottom: 5%; right: 0; }

.callout-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.specs-table tr:hover {
  background: var(--accent-soft);
}

.specs-table td {
  padding: 18px 16px;
  vertical-align: middle;
}

.spec-name {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.spec-name i {
  color: var(--accent);
  width: 16px;
  text-align: center;
}

.spec-value {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white);
  text-align: right;
}

.spec-highlight {
  color: var(--accent);
}


/* ════════════════════════════════════════
   BOOKING SECTION
════════════════════════════════════════ */
.booking {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.booking-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(57, 255, 130, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.perk i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-call {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 22px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  transition: var(--transition);
}

.quick-call i {
  color: var(--accent);
  font-size: 1rem;
}

.quick-call:hover {
  border-color: var(--border-h);
  background: var(--accent-soft);
  transform: translateX(4px);
}

/* Form */
.booking-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.form-header {
  background: var(--accent);
  padding: 24px 28px;
}

.form-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bg-deep);
  margin-bottom: 4px;
}

.form-header p {
  font-size: 0.82rem;
  color: rgba(3,10,5,0.65);
}

.booking-form {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-wrap { margin-top: 28px; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap i {
  position: absolute;
  left: 16px;
  color: var(--text-faint);
  font-size: 0.9rem;
  transition: color var(--transition);
  pointer-events: none;
}

.input-wrap input,
.input-wrap textarea {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px 13px 44px;
  font-size: 0.9rem;
  color: var(--text-white);
  outline: none;
  transition: var(--transition);
}

.textarea-wrap { align-items: flex-start; }
.textarea-wrap i { top: 14px; }
.textarea-wrap textarea { resize: vertical; min-height: 80px; }

.input-wrap input::placeholder,
.input-wrap textarea::placeholder { color: var(--text-faint); }

.input-wrap input:focus,
.input-wrap textarea:focus {
  border-color: var(--accent);
  background: rgba(57, 255, 130, 0.04);
}

.input-wrap input:focus + i,
.input-wrap:focus-within i { color: var(--accent); }

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.3);
  cursor: pointer;
}


/* ════════════════════════════════════════
   CONTACT / DEALERS
════════════════════════════════════════ */
.contact { background: var(--bg-deep); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.dealer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}

.dealer-icon {
  width: 50px; height: 50px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.dealer-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.dealer-address {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.dealer-address i { color: var(--accent); margin-top: 3px; }

.dealer-phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.dealer-phones a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}

.dealer-phones a:hover { color: var(--text-white); }
.dealer-phones a i { font-size: 0.85rem; }

.dealer-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.dealer-hours i { color: var(--accent); }

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.contact-form .input-wrap input,
.contact-form .input-wrap textarea {
  background: var(--bg-card);
  border-color: var(--border);
}

/* Map */
.map-wrap {
  height: 100%;
  min-height: 400px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: var(--bg-card);
  border: 1px dashed var(--border-h);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  text-align: center;
}

.map-placeholder i {
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.5;
}

.map-placeholder p {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.map-placeholder span {
  font-size: 0.8rem;
  color: var(--text-faint);
}


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: #020703;
  border-top: 1px solid var(--border);
  padding-top: 70px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--bg-deep);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links ul li a:hover { color: var(--accent); }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer-contact i {
  color: var(--accent);
  width: 14px;
}

.footer-ev-badge {
  margin-top: 16px;
  display: inline-flex !important;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.75rem !important;
  color: var(--accent) !important;
  white-space: nowrap;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-faint);
}

.heart { color: var(--accent); }


/* ════════════════════════════════════════
   SUCCESS PAGE
════════════════════════════════════════ */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.success-orbs { position: absolute; inset: 0; pointer-events: none; }

.success-content {
  text-align: center;
  max-width: 480px;
  padding: 40px 24px;
  position: relative;
  z-index: 2;
}

.success-icon {
  position: relative;
  width: 90px; height: 90px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon i {
  font-size: 2rem;
  color: var(--accent);
  position: relative;
  z-index: 2;
}

.check-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: ringPulse 2s ease-out infinite;
}

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.success-content h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 16px;
}

.success-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 32px;
}

.detail-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.detail-item i { color: var(--accent); }


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-scooter { width: 50%; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: 1fr; gap: 50px; }

  .specs-layout { grid-template-columns: 1fr; }
  .specs-visual { display: none; }

  .booking-grid { grid-template-columns: 1fr; gap: 50px; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(3, 10, 5, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }

  .hamburger {
    display: flex;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero {
    flex-direction: column;
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-content {
    padding: 0 24px;
    text-align: center;
    max-width: 100%;
  }

  .hero-title { font-size: clamp(3rem, 12vw, 5rem); align-items: center; }
  .hero-actions { justify-content: center; }

  .hero-scooter {
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: 40px auto 0;
    top: auto; right: auto;
    transform: none;
    padding-right: 0;
  }

  .hero-scroll-hint { display: none; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 0;
  }

  .stat-divider { display: none; }
  .stat-item { padding: 16px 20px; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  .features-grid { grid-template-columns: 1fr; }

  .gallery-slide img { height: 300px; }

  .footer-container { grid-template-columns: 1fr; gap: 32px; }

  .section-pad { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .booking-form { padding: 20px 18px; }
}