/* ===== CSS VARIABLES ===== */
:root {
  --ev-primary: #00f5d4;
  --ev-secondary: #f72585;
  --ev-purple: #7209b7;
  --ev-dark: #070714;
  --ev-dark-2: #0d0d1f;
  --ev-dark-3: #12122b;
  --ev-card: #111128;
  --ev-border: rgba(0, 245, 212, 0.15);
  --ev-text: #c8c8e8;
  --ev-text-muted: #7070a0;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ev-dark);
  color: var(--ev-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); color: #fff; }
a { color: var(--ev-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--ev-secondary); }
img { max-width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ev-dark); }
::-webkit-scrollbar-thumb { background: var(--ev-primary); border-radius: 3px; }

/* ===== NAVBAR ===== */
.volt-navbar {
  background: rgba(7, 7, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ev-border);
  padding: 1rem 0;
  transition: var(--transition);
}
.volt-navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(7, 7, 20, 0.98);
}
.brand-icon { font-size: 1.4rem; margin-right: 6px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}
.brand-accent { color: var(--ev-primary); }
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--ev-primary);
  transition: var(--transition);
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after { width: 60%; }
.navbar-nav .nav-link:hover { color: #fff !important; }
.volt-dropdown {
  background: var(--ev-dark-3) !important;
  border: 1px solid var(--ev-border) !important;
  border-radius: var(--radius) !important;
  padding: 0.5rem;
}
.volt-dropdown .dropdown-item {
  color: var(--ev-text) !important;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  transition: var(--transition);
}
.volt-dropdown .dropdown-item:hover {
  background: var(--ev-border) !important;
  color: var(--ev-primary) !important;
}

/* ===== BUTTONS ===== */
.btn-ev {
  background: linear-gradient(135deg, var(--ev-primary), #00c4aa);
  color: var(--ev-dark);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.btn-ev:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 245, 212, 0.4);
  color: var(--ev-dark);
}
.btn-outline-ev {
  background: transparent;
  color: var(--ev-primary);
  border: 2px solid var(--ev-primary);
  font-weight: 700;
  border-radius: 50px;
  padding: 0.7rem 2rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: var(--transition);
}
.btn-outline-ev:hover {
  background: var(--ev-primary);
  color: var(--ev-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 245, 212, 0.3);
}
.btn-primary {
  background: linear-gradient(135deg, var(--ev-primary), #00c4aa) !important;
  border: none !important;
  color: var(--ev-dark) !important;
  font-weight: 700;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 245, 212, 0.4) !important;
}
.btn-outline-light {
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--ev-dark);
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(0,245,212,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(114,9,183,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 20% 20%, rgba(247,37,133,0.06) 0%, transparent 50%);
}
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,212,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,212,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
.hero-badge {
  display: inline-block;
  background: rgba(0,245,212,0.1);
  border: 1px solid rgba(0,245,212,0.3);
  color: var(--ev-primary);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.accent-text {
  background: linear-gradient(135deg, var(--ev-primary), var(--ev-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--ev-text);
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--ev-primary);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--ev-text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 50px; background: var(--ev-border); }
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-indicator span { font-size: 0.7rem; letter-spacing: 3px; color: var(--ev-text-muted); text-transform: uppercase; }
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--ev-primary), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ===== SECTIONS ===== */
.section-tag {
  display: inline-block;
  color: var(--ev-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-subtitle { color: var(--ev-text-muted); font-size: 1.05rem; }
.section-vehicles { background: var(--ev-dark); }
.section-why {
  background: var(--ev-dark-2);
  position: relative;
}
.section-why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ev-primary), transparent);
}
.section-testimonials { background: var(--ev-dark); }

/* ===== VEHICLE CARDS ===== */
.vehicle-card {
  background: var(--ev-card);
  border: 1px solid var(--ev-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.vehicle-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,245,212,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(0,245,212,0.1);
}
.vehicle-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.vehicle-img-wrap {
  height: 180px;
  background: linear-gradient(135deg, rgba(0,245,212,0.03), rgba(114,9,183,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.vehicle-img-placeholder { width: 100%; }
.vehicle-info { padding: 1.5rem; }
.vehicle-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.vehicle-specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--ev-text-muted);
}
.spec i { color: var(--ev-primary); font-size: 0.9rem; }
.vehicle-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--ev-border);
}
.vehicle-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ev-primary);
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: var(--ev-card);
  border: 1px solid var(--ev-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(0,245,212,0.4);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(0,245,212,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  color: var(--ev-primary);
}
.feature-title { font-size: 1rem; margin-bottom: 0.7rem; }
.feature-desc { font-size: 0.9rem; color: var(--ev-text-muted); margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  max-width: 700px;
  background: var(--ev-card);
  border: 1px solid var(--ev-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.stars { color: #ffd60a; font-size: 1.2rem; margin-bottom: 1.2rem; }
.testimonial-text { font-size: 1.05rem; font-style: italic; color: var(--ev-text); margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.author-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--ev-primary), var(--ev-purple));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; color: #fff;
}
.carousel-control-prev, .carousel-control-next { width: 40px; }

/* ===== CTA ===== */
.section-cta { background: var(--ev-dark-2); }
.cta-card {
  background: var(--ev-card);
  border: 1px solid var(--ev-border);
  border-radius: 24px;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,245,212,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.cta-card p { color: var(--ev-text-muted); font-size: 1.05rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 0 80px;
  background: var(--ev-dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(0,245,212,0.06) 0%, transparent 70%);
}
.page-hero-tag { color: var(--ev-primary); font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; display: block; margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
.page-hero p { color: var(--ev-text-muted); font-size: 1.05rem; margin-top: 1rem; }

/* ===== POLICY PAGES ===== */
.policy-content {
  background: var(--ev-dark-2);
  padding: 5rem 0;
}
.policy-card {
  background: var(--ev-card);
  border: 1px solid var(--ev-border);
  border-radius: var(--radius);
  padding: 3rem;
}
.policy-card h3 {
  font-size: 1.1rem;
  color: var(--ev-primary);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
}
.policy-card h3:first-child { margin-top: 0; }
.policy-card p, .policy-card li { color: var(--ev-text); font-size: 0.95rem; margin-bottom: 0.8rem; }
.policy-card ul { padding-left: 1.5rem; }
.policy-card ul li::marker { color: var(--ev-primary); }
.policy-meta { font-size: 0.85rem; color: var(--ev-text-muted); margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--ev-border); }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--ev-dark-2); padding: 5rem 0; }
.contact-form-card {
  background: var(--ev-card);
  border: 1px solid var(--ev-border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-label { color: var(--ev-text); font-size: 0.9rem; font-weight: 500; }
.form-control, .form-select {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid var(--ev-border) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 0.75rem 1rem;
}
.form-control:focus, .form-select:focus {
  box-shadow: 0 0 0 3px rgba(0,245,212,0.15) !important;
  border-color: var(--ev-primary) !important;
  background: rgba(0,245,212,0.05) !important;
}
.form-control::placeholder { color: var(--ev-text-muted) !important; }
.form-select option { background: var(--ev-dark-3); color: #fff; }
.contact-info-card {
  background: var(--ev-card);
  border: 1px solid var(--ev-border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(0,245,212,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ev-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.alert-success-ev {
  background: rgba(0,245,212,0.1);
  border: 1px solid rgba(0,245,212,0.3);
  color: var(--ev-primary);
  border-radius: 10px;
  padding: 1rem 1.5rem;
}
.alert-danger-ev {
  background: rgba(247,37,133,0.1);
  border: 1px solid rgba(247,37,133,0.3);
  color: #f72585;
  border-radius: 10px;
  padding: 1rem 1.5rem;
}

/* ===== ABOUT PAGE ===== */
.team-card {
  background: var(--ev-card);
  border: 1px solid var(--ev-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(0,245,212,0.4); }
.team-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--ev-primary), var(--ev-purple));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 700; color: #fff;
  margin: 0 auto 1rem;
}
.team-role { color: var(--ev-primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }

/* ===== VEHICLES PAGE ===== */
.filter-bar {
  background: var(--ev-card);
  border: 1px solid var(--ev-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--ev-border);
  color: var(--ev-text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  margin: 0.25rem;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--ev-primary);
  color: var(--ev-dark);
  border-color: var(--ev-primary);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.volt-footer { background: var(--ev-dark-3); border-top: 1px solid var(--ev-border); }
.footer-top { padding: 5rem 0 3rem; }
.footer-brand { display: flex; align-items: center; }
.footer-desc { color: var(--ev-text-muted); font-size: 0.9rem; max-width: 320px; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ev-primary);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--ev-text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--ev-primary); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  display: flex; gap: 0.7rem;
  color: var(--ev-text-muted); font-size: 0.9rem;
  margin-bottom: 0.8rem; align-items: flex-start;
}
.footer-contact i { color: var(--ev-primary); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: var(--ev-text-muted); }
.footer-contact a:hover { color: var(--ev-primary); }
.footer-social { display: flex; gap: 0.7rem; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--ev-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ev-text-muted);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--ev-primary); color: var(--ev-dark); border-color: var(--ev-primary); transform: translateY(-3px); }
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--ev-border);
  font-size: 0.85rem;
  color: var(--ev-text-muted);
}
.footer-bottom-link { color: var(--ev-text-muted); font-size: 0.85rem; }
.footer-bottom-link:hover { color: var(--ev-primary); }

/* ===== ANIMATIONS ===== */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== MAP ===== */
.map-embed {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  border: 1px solid var(--ev-border);
  overflow: hidden;
}
.map-embed iframe { width: 100%; height: 100%; border: none; filter: invert(0.9) hue-rotate(180deg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.5rem; }
  .policy-card { padding: 1.5rem; }
  .contact-form-card { padding: 1.5rem; }
}
