/*
Theme Name: Eco Drive V4.1
Author: Eco Drive
Description: WordPress production candidate preserving the original Antigravity Eco Drive frontend.
Version: 4.1.0
Requires at least: 5.8
Requires PHP: 7.4
Text Domain: eco-drive-v4-1
*/
/* 
 * ECO DRIVE - Custom Premium Automotive Styling & Design System
 * Vanilla CSS implementation for maximum performance, flexibility and browser compatibility.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;700;900&display=swap');

:root {
  /* Color Design Tokens */
  --g: #159447;          /* Eco Drive Green */
  --gd: #073D24;         /* Deep Green */
  --ink: #07110B;        /* Obsidian Black */
  --muted: #526359;      /* Forest Grey */
  --light-bg: #F6F8F5;   /* Off White */
  --white: #FFFFFF;
  --line: #E2EAE4;       /* Subtle Grey Border */
  --accent-green: #5CE58C; /* Neon Accent Green */
  --charcoal: #151A17;   /* Carbon Fiber Charcoal */
  --glow-bg: rgba(92, 229, 140, 0.12);
  
  /* Font Families */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Shadows & Radius */
  --shadow-sm: 0 2px 8px rgba(7, 17, 11, 0.04);
  --shadow-md: 0 12px 30px rgba(7, 17, 11, 0.08);
  --shadow-lg: 0 24px 60px rgba(7, 17, 11, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 0;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.max-width-md {
  max-width: 800px;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-green { color: var(--g) !important; }
.text-muted { color: var(--muted) !important; }
.text-light { color: #A4B5AC !important; }
.font-bold { font-weight: 700; }
.bg-light { background-color: var(--light-bg) !important; }
.bg-white { background-color: var(--white) !important; }
.bg-dark { background-color: var(--ink) !important; }
.bg-charcoal { background-color: var(--charcoal) !important; }
.bg-green { background-color: var(--g) !important; }
.bg-charcoal-light { background-color: #222925 !important; }

.margin-top-xs { margin-top: 15px; }
.margin-top-sm { margin-top: 30px; }
.margin-top-md { margin-top: 60px; }
.section-padding { padding: 100px 0; }

.section-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--g);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Button & UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--g);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(21, 148, 71, 0.25);
}

.btn-primary:hover {
  background-color: var(--gd);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(21, 148, 71, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--ink);
  border: 2px solid var(--line);
}

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

.btn-ghost {
  background-color: transparent;
  color: var(--muted);
  border: 1px solid transparent;
  font-size: 13px;
  padding: 10px 20px;
}

.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--line);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
}

.btn-whatsapp-icon {
  background-color: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-icon:hover {
  background-color: #25D366;
  color: var(--white);
}

/* STICKY HEADER */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 234, 228, 0.5);
  z-index: 1000;
  transition: var(--transition);
}

.main-header.scrolled {
  height: 68px;
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.main-header.scrolled .header-logo img {
  height: 40px;
}

.logo-fallback {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.desktop-nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--g);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--g);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.action-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
}

.action-icon-btn:hover {
  color: var(--g);
  border-color: var(--g);
  background-color: rgba(21, 148, 71, 0.05);
}

.action-icon-btn .icon {
  width: 20px;
  height: 20px;
}

.whatsapp-btn-header:hover {
  color: #25D366;
  border-color: #25D366;
  background-color: rgba(37, 211, 102, 0.05);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--ink);
  border-radius: 4px;
  transition: var(--transition);
}

/* Mobile Dropdown Nav */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 24px 5%;
  transform: translateY(-120%);
  opacity: 0;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--light-bg);
}

.mobile-nav-link.active {
  color: var(--g);
  border-bottom-color: var(--g);
}

.mobile-nav-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* HERO SECTION styling */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  background: radial-gradient(circle at 80% 30%, #ecfcf2 0%, var(--white) 65%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-wrapper {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 60px;
  z-index: 2;
}

.hero-text-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--g);
  margin-bottom: 24px;
  border: 1px solid rgba(21, 148, 71, 0.2);
  padding: 6px 14px;
  border-radius: 99px;
  background-color: rgba(21, 148, 71, 0.05);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero-title .accent-text {
  color: var(--g);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--gd);
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-phone {
  font-weight: 700;
  color: var(--ink);
}

.hero-visual-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.95);
  animation: heroImageFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.scooter-glow-bg {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-green) 0%, rgba(92, 229, 140, 0) 70%);
  filter: blur(40px);
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
  animation: pulseGlow 8s infinite alternate;
}

.hero-scooter-image {
  width: min(85%, 620px);
  max-height: 80vh;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(7, 61, 36, 0.15));
  animation: floatScooter 6s ease-in-out infinite;
}

/* Floating labels in Hero */
.floating-badge {
  position: absolute;
  background-color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--line);
  transition: var(--transition);
}

.floating-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.floating-badge strong {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--g);
  line-height: 1;
}

.floating-badge span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-top-right {
  top: 15%;
  right: 5%;
}

.badge-bottom-left {
  bottom: 12%;
  left: 2%;
}

/* QUICK ACTION BAR */
.quick-action-bar {
  background-color: var(--ink);
  color: var(--white);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.action-grid {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.action-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.action-item:hover {
  background-color: rgba(92, 229, 140, 0.06);
  border-color: var(--g);
  transform: translateY(-2px);
}

.action-icon {
  font-size: 24px;
}

.action-item span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #E2EAE4;
}

/* LOCAL PRESENCE / SHOWROOM INFO */
.local-presence-section {
  padding: 100px 0;
  background-color: var(--white);
}

.presence-container {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.presence-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.presence-address-card {
  background-color: var(--light-bg);
  border-left: 4px solid var(--g);
  padding: 24px 30px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
}

.presence-address-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--gd);
  margin-bottom: 8px;
}

.presence-address-card address {
  font-style: normal;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.5;
}

.presence-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* PRODUCT CARD STYLING */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 148, 71, 0.2);
}

.product-card-image-wrapper {
  background-color: var(--light-bg);
  padding: 50px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 380px;
}

.product-card-img {
  width: 75%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
  transition: var(--transition);
}

.product-card:hover .product-card-img {
  transform: scale(1.04) translateY(-4px);
}

.product-card-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-badge {
  display: inline-block;
  align-self: flex-start;
  background-color: rgba(21, 148, 71, 0.08);
  color: var(--g);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.product-card-tagline {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
}

.product-card-price-block {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-bottom: 24px;
}

.product-card-price-block .price-value {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}

.product-card-price-block .price-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.product-card-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background-color: var(--light-bg);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
}

.spec-mini-item {
  display: flex;
  flex-direction: column;
}

.spec-mini-item .label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.spec-mini-item .value {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 2px;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 12px;
  margin-top: auto;
}

.product-card-btn {
  padding: 14px 18px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.product-card-link, .product-card-link-whatsapp {
  grid-column: span 1;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  margin-top: 10px;
}

.product-card-link:hover {
  color: var(--ink);
}

.product-card-link-whatsapp:hover {
  color: #25D366;
}

.price-disclaimer {
  font-size: 12px;
  color: var(--muted);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
}

/* COMPARISON MODULE STYLING */
.comparison-container {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 40px;
}

.comparison-header-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background-color: var(--light-bg);
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.comparison-label-cell {
  padding: 24px 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--gd);
}

.comparison-column-header {
  padding: 30px 20px;
  text-align: center;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.comparison-column-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
}

.comparison-column-header .price-tag {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--g);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: var(--transition);
}

.comparison-row:hover {
  background-color: rgba(21, 148, 71, 0.02);
}

.comparison-row .comparison-label-cell {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  padding: 20px 30px;
}

.comparison-value-cell {
  padding: 20px;
  text-align: center;
  border-left: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
}

.comparison-actions-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background-color: var(--white);
  align-items: center;
}

.comparison-action-cell {
  padding: 24px 20px;
  border-left: 1px solid var(--line);
}

/* BRAND STORY SECTION */
.brand-story-section {
  background-color: var(--white);
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.story-card {
  background-color: var(--light-bg);
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: var(--transition);
}

.story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 148, 71, 0.15);
  box-shadow: var(--shadow-sm);
  background-color: var(--white);
}

.story-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.story-card h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--ink);
}

.story-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* TECH FEATURES SHOWCASE */
.tech-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.tech-feature-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.tech-feature-card:hover {
  background-color: rgba(92, 229, 140, 0.04);
  border-color: rgba(92, 229, 140, 0.2);
  transform: translateY(-3px);
}

.tech-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.tech-feature-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.tech-feature-card p {
  font-size: 14px;
  color: #A4B5AC;
  line-height: 1.5;
}

/* BATTERY OPTIONS PAGE ELEMENTS */
.battery-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.battery-card-compact {
  background-color: var(--white);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.battery-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 99px;
}

.battery-card-compact h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.charging-info {
  font-weight: 700;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
}

.battery-card-compact .desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* BATTERY DETAILS PAGE */
.battery-intro-text {
  text-align: center;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 50px;
}

.battery-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.battery-detail-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.battery-detail-card h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
}

.battery-stat {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.battery-stat .label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}

.battery-stat .value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
}

.battery-pros-list {
  list-style: none;
  margin-bottom: 30px;
}

.battery-pros-list li {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 500;
}

.battery-placeholder-box {
  background-color: var(--light-bg);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-top: auto;
  border: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.battery-placeholder-box p {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}

.data-placeholder {
  font-weight: 600;
  color: var(--ink);
  font-style: italic;
}

/* WHY ELECTRIC PAGE */
.why-ev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.why-ev-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background-color: var(--light-bg);
  border: 1px solid var(--line);
  position: relative;
}

.why-ev-card .card-num {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  color: rgba(21, 148, 71, 0.15);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.why-ev-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-ev-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* RETAIL JOURNEY FLOW */
.journey-header {
  margin-bottom: 40px;
}

.journey-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
}

.journey-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.journey-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background-color: var(--line);
  z-index: 1;
}

.journey-step {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.step-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--g);
  color: var(--g);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.step-content {
  background-color: var(--white);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  flex-grow: 1;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: var(--muted);
}

.step-content a {
  color: var(--g);
  font-weight: 600;
}

/* B2B / PARTNERSHIP PAGE LAYOUTS */
.b2b-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
}

.label-heading {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--g);
  display: block;
  margin-bottom: 8px;
}

.b2b-copy-side h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.alert-box {
  background-color: #FFF9E6;
  border-left: 4px solid #F5B041;
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 13px;
  line-height: 1.5;
  color: #7D6608;
  margin: 24px 0;
}

.bullet-list-b2b {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.bullet-item {
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}

/* B2B FORM PANEL */
.form-panel {
  background-color: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.form-panel h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-panel .text-muted {
  font-size: 13px;
  margin-bottom: 24px;
}

/* Forms layout */
.lead-panel-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row.flex-row {
  flex-direction: row;
  gap: 16px;
}

.flex-1 { flex: 1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lead-panel-form input,
.lead-panel-form select,
.lead-panel-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: var(--transition);
}

.lead-panel-form input:focus,
.lead-panel-form select:focus,
.lead-panel-form textarea:focus {
  border-color: var(--g);
  box-shadow: 0 0 0 3px rgba(21, 148, 71, 0.15);
}

.lead-panel-form textarea {
  min-height: 100px;
  resize: vertical;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 6px;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--g);
}

.form-consent label {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

.btn-submit-form {
  margin-top: 10px;
  padding: 16px;
}

/* PRODUCT DETAIL PAGE STYLING */
.product-hero-section {
  padding: 140px 0 80px;
  background: radial-gradient(circle at 15% 30%, #ecfcf2 0%, var(--white) 65%);
}

.product-hero-container {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-hero-image-side {
  position: relative;
  background-color: var(--light-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.product-main-view-img {
  width: 80%;
  max-width: 440px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.model-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: var(--g);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-badge.select-sl {
  background-color: var(--charcoal);
}

.color-swatch-box {
  margin-top: 24px;
}

.swatch-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.swatches {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer;
  transition: var(--transition);
}

.swatch:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px var(--g);
}

.color-black { background-color: #1A1A1A; }
.color-white { background-color: #F0F0F0; }
.color-green { background-color: #0E5E2E; }
.color-blue { background-color: #1A4D7C; }
.color-grey { background-color: #555555; }
.color-red { background-color: #A31E1E; }

.product-hero-info-side h1 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
}

.tagline-large {
  font-size: 20px;
  color: var(--g);
  font-weight: 600;
  margin-bottom: 24px;
}

.product-detail-price-box {
  background-color: var(--light-bg);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  margin-bottom: 28px;
}

.product-detail-price-box .price-val {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}

.product-detail-price-box .label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 6px;
  display: block;
}

.product-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.product-feature-list-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.mini-spec-row {
  display: flex;
  gap: 8px;
  font-size: 14px;
}

.mini-spec-row strong {
  color: var(--ink);
}

.mini-spec-row span {
  color: var(--muted);
}

.product-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* SPECS TABLE STYLING */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.specs-table th {
  background-color: var(--ink);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 24px;
  text-align: left;
}

.specs-table td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:nth-child(even) {
  background-color: var(--light-bg);
}

/* ABOUT US ELEMENTS */
.about-content h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
}

.about-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.stat-card {
  background-color: var(--light-bg);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-card h3 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  color: var(--g);
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 0;
}

/* CONTACT PAGE STYLING */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  align-items: flex-start;
}

.contact-info-side h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 30px 0;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
}

.contact-detail-item strong {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-detail-item address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.5;
}

.contact-detail-item p {
  font-size: 15px;
}

.contact-detail-item a {
  color: var(--g);
  font-weight: 700;
}

.contact-buttons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Showroom Photo grid */
.showroom-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.showroom-gallery-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  transition: var(--transition);
}

.showroom-gallery-img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-sm);
}

/* ACCORDION FAQ STYLING */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background-color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-accordion-question {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  border: none;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-accordion-question:hover, .faq-accordion-question.active {
  color: var(--g);
  background-color: var(--light-bg);
}

.faq-toggle-icon {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.faq-accordion-answer {
  padding: 0 30px 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* LEGAL PAGES */
.legal-page-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0 12px;
  color: var(--gd);
}

.legal-page-content p, .legal-page-content ul {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.legal-page-content ul {
  padding-left: 20px;
}

.last-updated {
  font-style: italic;
  margin-bottom: 24px !important;
}

/* REVIEWS SLIDER */
.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.review-slide-card {
  background-color: var(--light-bg);
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: left;
}

.review-stars {
  color: #F1C40F;
  font-size: 18px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}

.review-author {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.review-summary-box {
  display: inline-block;
  background-color: var(--light-bg);
  border: 1px solid var(--line);
  padding: 24px 40px;
  border-radius: var(--radius-md);
}

.rating-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
}

.rating-stars {
  color: #F1C40F;
  font-size: 20px;
  margin: 4px 0;
}

.rating-count {
  font-size: 12px;
  color: var(--muted);
}

/* B2B Opportunity Grid homepage */
.b2b-callout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.b2b-card {
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.b2b-card h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
}

.b2b-card p {
  font-size: 15px;
  color: #A4B5AC;
  line-height: 1.6;
  margin-bottom: 24px;
}

.card-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* PAGE TITLE BANNER */
.page-title-banner {
  padding: 130px 0 60px;
  background-color: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-title-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.banner-subtitle {
  font-size: 16px;
  color: #A4B5AC;
  max-width: 600px;
  margin: 0 auto;
}

.page-title-banner .eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--g);
  text-transform: uppercase;
}

/* MAIN FOOTER */
.main-footer {
  background-color: var(--ink);
  color: #C1CFC5;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 50px;
}

.footer-logo img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.footer-meta-info {
  display: flex;
  gap: 12px;
  font-size: 10px;
  color: #7D8E84;
}

.footer-links-section h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-links-section ul {
  list-style: none;
}

.footer-links-section ul li {
  margin-bottom: 12px;
}

.footer-links-section ul li a {
  font-size: 13px;
  color: #A4B5AC;
}

.footer-links-section ul li a:hover {
  color: var(--accent-green);
  padding-left: 4px;
}

.footer-address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
  color: #A4B5AC;
  margin-bottom: 16px;
}

.footer-contact-info {
  font-size: 13px;
  color: #A4B5AC;
}

.footer-contact-info a {
  color: var(--white);
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
}

.footer-bottom-container {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-legal-links a {
  color: #7D8E84;
}

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

.footer-legal-links .separator {
  margin: 0 8px;
  color: rgba(255,255,255,0.1);
}

/* STICKY BOTTOM BAR (MOBILE ONLY) */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: var(--white);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
  border-top: 1px solid var(--line);
  z-index: 998;
  grid-template-columns: repeat(3, 1fr);
}

.mobile-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.05em;
  gap: 4px;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.action-call {
  color: var(--ink);
  background-color: var(--white);
}

.action-whatsapp {
  color: var(--white);
  background-color: #25D366;
}

.action-test {
  color: var(--white);
  background-color: var(--g);
}

/* MODAL DIALOGS */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(7, 17, 11, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-box {
  background-color: var(--white);
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  position: relative;
  animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--light-bg);
  border: none;
  font-size: 20px;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background-color: var(--ink);
  color: var(--white);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-form label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.modal-form input, .modal-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background-color: var(--white);
  outline: none;
}

.modal-form input:focus, .modal-form select:focus {
  border-color: var(--g);
}

/* TOAST STYLING */
.toast-container {
  position: fixed;
  top: 96px;
  right: 5%;
  z-index: 2010;
  animation: toastSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-box {
  background-color: var(--ink);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 380px;
}

.toast-icon {
  width: 24px;
  height: 24px;
  background-color: var(--g);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.toast-content {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

.toast-content strong {
  font-family: var(--font-heading);
  font-size: 14px;
}

.toast-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
  cursor: pointer;
  margin-left: auto;
  padding-left: 10px;
}

.toast-close:hover {
  color: var(--white);
}

/* KEYFRAMES ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageFade {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.15);
    opacity: 0.45;
  }
}

@keyframes floatScooter {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE MEDIA BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 40px 0;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .badge-top-right {
    top: 5%;
    right: 5%;
  }
  
  .badge-bottom-left {
    bottom: 5%;
    left: 5%;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .b2b-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 850px) {
  .desktop-nav, .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Menu icon active states */
  .mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .presence-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .battery-preview-grid, .battery-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .why-ev-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-slider {
    grid-template-columns: 1fr;
  }
  
  .product-hero-container {
    grid-template-columns: 1fr;
  }
  
  .comparison-header-row {
    grid-template-columns: 1fr;
  }
  
  .comparison-row, .comparison-actions-row {
    grid-template-columns: 1fr;
  }
  
  .comparison-column-header, .comparison-value-cell, .comparison-action-cell {
    border-left: none;
    border-top: 1px solid var(--line);
  }
  
  .comparison-label-cell {
    text-align: center;
    background-color: var(--light-bg);
  }
  
  body {
    padding-bottom: 60px; /* space for sticky mobile bar */
  }
  
  .mobile-action-bar {
    display: grid;
  }
}

@media (max-width: 580px) {
  .tech-feature-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row.flex-row {
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .contact-buttons-row {
    flex-direction: column;
  }
  
  .contact-buttons-row .btn {
    width: 100%;
  }
  
  .product-cta-buttons {
    flex-direction: column;
  }
  
  .product-cta-buttons .btn {
    width: 100%;
  }
  
  .product-card-actions {
    grid-template-columns: 1fr;
  }
}

/* V4.1 WordPress integration fixes */
.eco-drive-original-logo {
    display: block;
    width: auto;
    max-width: 150px;
    max-height: 54px;
    object-fit: contain;
}
