/* ============================================
   Ecospark Philippines - Premium Stylesheet
   Tech Green + Tech Red + White Premium Design
   ============================================ */

.ecospark-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* === CSS Variables / Design Tokens === */
:root {
  /* Colors */
  --green-primary: #00C853;
  --green-light: #5EFC82;
  --green-dark: #009624;
  --green-glow: rgba(0, 200, 83, 0.15);
  --green-glow-strong: rgba(0, 200, 83, 0.35);

  --red-primary: #FF3D00;
  --red-light: #FF6E40;
  --red-dark: #DD2C00;
  --red-glow: rgba(255, 61, 0, 0.12);

  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  --dark-bg: #0A0E1A;
  --dark-card: #131829;
  --dark-border: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-green: 0 8px 30px rgba(0, 200, 83, 0.2);
  --shadow-red: 0 8px 30px rgba(255, 61, 0, 0.15);

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-primary);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul { list-style: none; }

/* === Utility === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-red {
  background: linear-gradient(135deg, var(--red-primary), var(--red-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-primary);
  background: var(--green-glow);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-primary);
  animation: pulse-dot 2s infinite;
}

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

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.7;
}

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  z-index: 1000;
  transition: all 0.3s var(--ease-out);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.95);
}

.nav-inner {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: var(--shadow-green);
  transition: transform 0.3s var(--ease-spring);
}

.nav-logo:hover .nav-logo-icon {
  transform: scale(1.1) rotate(-5deg);
}

.nav-logo-text span {
  color: var(--green-primary);
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-primary);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--gray-900);
}

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

.nav-links a.active {
  color: var(--gray-900);
  font-weight: 600;
}

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

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all 0.2s;
}

.lang-toggle:hover {
  background: var(--green-glow);
  border-color: var(--green-primary);
  color: var(--green-primary);
}

.lang-toggle svg {
  width: 16px;
  height: 16px;
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 200, 83, 0.35);
}

.btn-red {
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  color: white;
  box-shadow: var(--shadow-red);
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 61, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gray-800);
  border: 2px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: var(--green-glow);
}

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

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === Page Sections === */
/* Keep Home, E-Motorcycles, and Contact Us mutually exclusive. */
.page-section {
  display: none !important;
  min-height: 100vh;
  padding-top: var(--nav-height);
}

.page-section.active {
  display: block !important;
  animation: fadeInUp 0.5s var(--ease-out);
}

/* Extra safeguard: these sections live inside page-home, but we also enforce
   body-level hiding so they can never leak onto E-Motorcycles or Contact Us. */
body:not(.home-active) .network-section,
body:not(.home-active) .compare-section {
  display: none !important;
}

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

/* === HOME PAGE === */

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--green-glow-strong) 0%, transparent 60%);
  border-radius: 50%;
  animation: float-orb 12s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 60%);
  border-radius: 50%;
  animation: float-orb 15s ease-in-out infinite reverse;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 83, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 83, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-primary);
  box-shadow: 0 0 0 4px var(--green-glow);
  animation: pulse-dot 2s infinite;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-title .highlight {
  display: inline-block;
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--green-glow);
  border-radius: 6px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.hero-stat-num .unit {
  color: var(--green-primary);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* Hero Visual - E-Motorcycle Illustration */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--green-glow-strong) 0%, transparent 50%);
}

.hero-visual-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
}

.hero-visual-svg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-visual-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: white;
}

.hero-visual-label h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.hero-visual-label p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 4px;
}

.hero-visual-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  padding: 8px 14px;
  background: rgba(0, 200, 83, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-light);
}

/* Battery Swap Section */
.swap-section {
  padding: 100px 0;
  background: var(--white);
}

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

.swap-feature {
  padding: 32px 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease-out);
}

.swap-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-primary);
  background: white;
}

.swap-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease-out);
}

.swap-feature:hover .swap-feature-icon {
  background: var(--green-primary);
  transform: scale(1.1);
}

.swap-feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--green-primary);
  transition: color 0.3s;
}

.swap-feature:hover .swap-feature-icon svg {
  color: white;
}

.swap-feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* Battery Swap Process */
.swap-process {
  margin-top: 80px;
  padding: 56px;
  background:
    radial-gradient(circle at 15% 50%, rgba(0, 200, 83, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(0, 150, 36, 0.10) 0%, transparent 40%),
    linear-gradient(135deg, #07120f 0%, #0a1a12 50%, #07120f 100%);
  border-radius: var(--radius-xl);
  color: white;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 200, 83, 0.12);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.swap-process::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.22) 0%, transparent 65%);
  border-radius: 50%;
}

.swap-process::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}

.swap-process-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 48px;
}

.swap-process-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.swap-process-header p {
  color: rgba(255, 255, 255, 0.7);
}

.swap-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.swap-step {
  text-align: center;
  position: relative;
}

.swap-step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 0 0 6px rgba(0, 200, 83, 0.15);
}

.swap-step h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.swap-step p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.swap-step::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 60%;
  right: -40%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-primary), transparent);
  opacity: 0.3;
}

.swap-step:last-child::after {
  display: none;
}

/* Swap Visual Hero */
.swap-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 72px 0 80px;
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.swap-visual-content {
  position: relative;
  z-index: 1;
}

.swap-visual-content .section-eyebrow {
  margin-bottom: 16px;
  display: inline-block;
}

.swap-visual-content h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-dark);
}

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

.swap-visual-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.swap-visual-list li:last-child {
  border-bottom: none;
}

.swap-visual-list li::before {
  content: '';
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--green-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.swap-visual-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.swap-visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.swap-visual-image video.swap-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.swap-visual-image .swap-video-fallback {
  display: none;
}

.swap-visual-image .swap-video-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swap-visual:hover .swap-visual-image img {
  transform: scale(1.03);
}

/* Swap vs Gas Comparison */
.swap-compare {
  margin-top: 96px;
  padding: 64px 48px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
  border-radius: var(--radius-xl);
  color: white;
  position: relative;
  overflow: hidden;
}

.swap-compare::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.25) 0%, transparent 60%);
  border-radius: 50%;
}

.swap-compare-header {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}

.swap-compare-header .section-eyebrow {
  margin-bottom: 12px;
  display: inline-block;
}

.swap-compare-header h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.swap-compare-subtitle {
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

.swap-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.swap-compare-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.swap-compare-card.gas {
  opacity: 0.85;
}

.swap-compare-card.swap {
  background: rgba(0, 200, 83, 0.08);
  border-color: rgba(0, 200, 83, 0.3);
  box-shadow: 0 0 40px rgba(0, 200, 83, 0.12);
}

.swap-compare-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.swap-compare-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gas-icon {
  background: rgba(255, 61, 0, 0.15);
  color: var(--red-primary);
}

.swap-icon {
  background: rgba(0, 200, 83, 0.2);
  color: var(--green-primary);
}

.swap-compare-icon svg {
  width: 26px;
  height: 26px;
}

.swap-compare-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
}

.swap-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.swap-compare-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 12px;
}

.swap-compare-list li:last-child {
  border-bottom: none;
}

.swap-compare-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.swap-compare-card.gas .swap-compare-list li::before {
  background-color: rgba(255, 61, 0, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF3D00' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

.swap-compare-card.swap .swap-compare-list li::before {
  background-color: rgba(0, 200, 83, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300C853' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* Swap Gallery / Slideshow */
.swap-gallery {
  margin-top: 96px;
}

.swap-gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.swap-gallery-header .section-eyebrow {
  margin-bottom: 12px;
  display: inline-block;
}

.swap-gallery-header h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.swap-gallery-subtitle {
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

.swap-slideshow {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--dark-bg);
  aspect-ratio: 16 / 9;
}

.swap-slideshow-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s var(--ease-out);
}

.swap-slide {
  min-width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  position: relative;
}

.swap-slide.active {
  opacity: 1;
}

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

.swap-slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  transition: all 0.2s var(--ease-out);
  z-index: 2;
}

.swap-slideshow-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.swap-slideshow-btn.prev { left: 20px; }
.swap-slideshow-btn.next { right: 20px; }

.swap-slideshow-btn svg {
  width: 22px;
  height: 22px;
}

.swap-slideshow-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.swap-slideshow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}

.swap-slideshow-dot.active {
  background: var(--green-primary);
  transform: scale(1.2);
}

.swap-slideshow-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Network Section */
.network-section {
  padding: 100px 0;
  background: var(--off-white);
}

.network-header {
  text-align: center;
  margin-bottom: 56px;
}

.network-header .section-desc {
  margin: 0 auto;
}

.network-map {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.network-svg-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.network-legend {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.network-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.network-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.network-legend-dot.active {
  background: var(--green-primary);
  box-shadow: 0 0 0 4px var(--green-glow);
}

.network-legend-dot.planned {
  background: var(--gray-300);
  border: 2px dashed var(--gray-400);
}

/* Expansion Timeline */
.expansion-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.expansion-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: white;
  border: 2px solid var(--gray-100);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.expansion-card.active {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-green);
}

.expansion-card.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
}

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

.expansion-phase {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.expansion-card.active .expansion-phase {
  background: var(--green-glow);
  color: var(--green-primary);
}

.expansion-card:not(.active) .expansion-phase {
  background: var(--gray-100);
  color: var(--gray-500);
}

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

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

/* Buy vs Rent Comparison */
.compare-section {
  padding: 100px 0;
  background: var(--white);
}

.compare-header {
  text-align: center;
  margin-bottom: 56px;
}

.compare-header .section-desc {
  margin: 0 auto;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.compare-card {
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--gray-100);
  background: white;
  position: relative;
  transition: all 0.3s var(--ease-out);
}

.compare-card.rental {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-green);
}

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

.compare-badge {
  position: absolute;
  top: -14px;
  right: 32px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-green);
}

.compare-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.compare-card .price {
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.compare-card.rental .price {
  color: var(--green-primary);
  font-weight: 700;
  font-size: 1.3rem;
}

.compare-card .price-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--gray-50);
  border: 1px dashed var(--gray-300);
  border-radius: 100px;
  color: var(--gray-600);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.compare-card.rental .price-tag {
  background: rgba(0, 200, 83, 0.08);
  border-color: rgba(0, 200, 83, 0.4);
  border-style: solid;
  color: var(--green-dark);
}

.price-tag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: currentColor;
}

.price-tag-icon svg {
  width: 100%;
  height: 100%;
}

.compare-card .price-tag-sub {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 24px;
  padding: 0 2px;
}

.compare-features {
  margin-bottom: 28px;
}

.compare-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.compare-features li:last-child {
  border-bottom: none;
}

.compare-features .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-glow);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.compare-features .check svg {
  width: 12px;
  height: 12px;
}

.compare-note {
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.compare-note svg {
  width: 16px;
  height: 16px;
  color: var(--gray-400);
  flex-shrink: 0;
  margin-top: 1px;
}

.compare-card .btn {
  width: 100%;
}

/* === PRODUCTS PAGE === */
.products-page {
  padding: 100px 0 120px;
  background: var(--off-white);
  min-height: 100vh;
}

.products-header {
  text-align: center;
  margin-bottom: 48px;
}

.products-header .section-desc {
  margin: 0 auto;
}

.products-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  background: white;
  border: 1px solid var(--gray-200);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}

.filter-btn:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
}

.filter-btn.active {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: white;
  box-shadow: var(--shadow-green);
}

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

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease-out);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}

.product-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
}

.product-badge.sale {
  background: rgba(255, 61, 0, 0.9);
  color: white;
}

.product-badge.rent {
  background: rgba(0, 200, 83, 0.9);
  color: white;
}

.product-badge.new {
  background: rgba(0, 0, 0, 0.7);
  color: white;
}

.product-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--green-glow) 0%, transparent 60%);
}

.product-image-svg {
  position: relative;
  z-index: 1;
  width: 70%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-info {
  padding: 24px;
}

.product-brand {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 4px;
}

.product-card.yadea .product-brand {
  color: var(--red-primary);
}

.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-tagline {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius-md);
}

.product-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-spec-label {
  font-size: 0.72rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-spec-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.product-price-label {
  font-size: 0.78rem;
  color: var(--gray-400);
}

.product-price-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
}

.product-price-unit {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* Contact-for-pricing badge (replaces actual price) */
.product-price.product-price-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--gray-50);
  border: 1px dashed var(--gray-300);
  border-radius: 100px;
  color: var(--gray-700);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-price-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--green-primary);
}

.product-price-sub {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 16px;
  padding: 0 2px;
}

.product-swap-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.product-swap-note.included {
  background: var(--green-glow);
  color: var(--green-dark);
}

.product-swap-note.not-included {
  background: rgba(255, 61, 0, 0.08);
  color: var(--red-dark);
}

.product-swap-note svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.product-actions {
  display: flex;
  gap: 8px;
}

.product-actions .btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.85rem;
}

/* === CONTACT PAGE === */
.contact-page {
  padding: 100px 0 120px;
  background: var(--off-white);
  min-height: 100vh;
}

.contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-header .section-desc {
  margin: 0 auto;
}

/* CTA Cards */
.contact-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.contact-cta-card {
  padding: 40px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.contact-cta-card.rental {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
  color: white;
}

.contact-cta-card.purchase {
  background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
  color: white;
}

.contact-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-cta-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.contact-cta-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.contact-cta-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-cta-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.contact-cta-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-cta-card p {
  position: relative;
  z-index: 1;
  font-size: 0.92rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-cta-card .btn {
  position: relative;
  z-index: 1;
  background: white;
  color: var(--gray-900);
}

.contact-cta-card.rental .btn {
  color: var(--green-primary);
}

.contact-cta-card.purchase .btn {
  color: var(--red-primary);
}

/* Contact Main Grid */
.contact-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

/* Form */
.contact-form-wrapper {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.contact-form-wrapper h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
}

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

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--off-white);
  transition: all 0.2s var(--ease-out);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  background: white;
  box-shadow: 0 0 0 4px var(--green-glow);
}

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

.form-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.form-radio-label:hover {
  border-color: var(--green-primary);
}

.form-radio-label input {
  accent-color: var(--green-primary);
}

.form-radio-label.selected {
  border-color: var(--green-primary);
  background: var(--green-glow);
  color: var(--green-dark);
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.form-message {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  margin-top: 16px;
  display: none;
}

.form-message.success {
  display: block;
  background: var(--green-glow);
  color: var(--green-dark);
  border: 1px solid var(--green-primary);
}

.form-message.error {
  display: block;
  background: rgba(255, 61, 0, 0.08);
  color: var(--red-dark);
  border: 1px solid var(--red-primary);
}

/* Contact Info */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.contact-info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green-primary);
}

.contact-info-text {
  flex: 1;
}

.contact-info-text .label {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-info-text .value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  white-space: pre-line;
}

.contact-info-text .sub {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  background: #25D366;
  color: white;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.whatsapp-btn:hover {
  background: #1eb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease-out);
}

.social-link:hover {
  background: var(--green-primary);
  transform: translateY(-2px);
}

.social-link:hover svg {
  color: white;
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: var(--gray-600);
  transition: color 0.2s;
}

/* Map */
.contact-map {
  background: white;
  border-radius: var(--radius-xl);
  padding: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.contact-map-header {
  padding: 20px 24px 0;
}

.contact-map-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.map-placeholder {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-lg);
  margin-top: 16px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 83, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 83, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-pin {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.map-pin-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  background: var(--green-primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(0, 200, 83, 0.2), 0 10px 30px rgba(0, 200, 83, 0.3);
  animation: map-pin-bounce 2s ease-in-out infinite;
}

.map-pin-icon svg {
  width: 28px;
  height: 28px;
  color: white;
  transform: rotate(45deg);
}

@keyframes map-pin-bounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-10px); }
}

.map-pin p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* === Footer === */
.footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--green-light);
}

.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
  cursor: pointer;
}

.footer-col ul li a:hover {
  color: var(--green-light);
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* === Partnerships Section === */
.partnerships-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.partnerships-header {
  text-align: center;
  margin-bottom: 56px;
}

.partnerships-header .section-desc {
  margin: 0 auto;
}

.partnerships-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Partner Card */
.partner-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}

.partner-card:hover {
  transform: translateY(-6px);
}

.partner-card-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: opacity 0.4s var(--ease-out);
}

.partner-card.infrastructure .partner-card-glow {
  background: linear-gradient(135deg, #00C853 0%, #009624 30%, #0A0E1A 100%);
}

.partner-card.fleet .partner-card-glow {
  background: linear-gradient(135deg, #FF3D00 0%, #DD2C00 30%, #0A0E1A 100%);
}

.partner-card-inner {
  position: relative;
  z-index: 1;
  padding: 40px 32px;
  color: white;
  backdrop-filter: blur(2px);
}

.partner-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease-spring);
}

.partner-card:hover .partner-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.25);
}

.partner-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.partner-badge {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.partner-card.infrastructure .partner-badge {
  background: rgba(0, 200, 83, 0.2);
  border: 1px solid rgba(94, 252, 130, 0.4);
  color: #5EFC82;
}

.partner-card.fleet .partner-badge {
  background: rgba(255, 61, 0, 0.2);
  border: 1px solid rgba(255, 110, 64, 0.4);
  color: #FF6E40;
}

.partner-card-inner h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.partner-card-inner > p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 24px;
}

.partner-benefits {
  margin-bottom: 28px;
}

.partner-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.partner-benefits li:last-child {
  border-bottom: none;
}

.partner-benefits .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.partner-card.infrastructure .partner-benefits .check {
  background: rgba(0, 200, 83, 0.25);
  color: #5EFC82;
}

.partner-card.fleet .partner-benefits .check {
  background: rgba(255, 61, 0, 0.25);
  color: #FF6E40;
}

.partner-benefits .check svg {
  width: 12px;
  height: 12px;
}

/* Fleet Logo Row */
.partner-logo-row {
  margin-bottom: 28px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-logo-row .partner-logo-placeholder {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 10px;
}

.partner-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.partner-logo-tag {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.2s;
}

.partner-logo-tag:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Partner Actions */
.partner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.partner-actions .btn {
  flex: 1;
  min-width: 160px;
}

.partner-actions .btn-primary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--gray-900);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.partner-card.infrastructure .partner-actions .btn-primary {
  color: var(--green-primary);
}

.partner-card.fleet .partner-actions .btn-primary {
  color: var(--red-primary);
}

.partner-actions .btn-primary:hover {
  background: white;
  transform: translateY(-2px);
}

.partner-email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: white;
  text-decoration: none;
}

.partner-email-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  transform: translateY(-2px);
}

/* Contact CTA - Partner Cards */
.contact-cta-card.infra-partner {
  background: linear-gradient(135deg, #0A0E1A 0%, #009624 100%);
  color: white;
}

.contact-cta-card.fleet-partner {
  background: linear-gradient(135deg, #0A0E1A 0%, #DD2C00 100%);
  color: white;
}

.contact-cta-card.infra-partner .btn {
  color: var(--green-primary);
}

.contact-cta-card.fleet-partner .btn {
  color: var(--red-primary);
}

/* Form Radio - Partnership Options */
.form-radio-group.partner-radio-group {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  .form-radio-group.partner-radio-group {
    grid-template-columns: 1fr;
  }
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual-card {
    max-width: 380px;
    aspect-ratio: 16/10;
  }

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

  .swap-visual {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .swap-visual-image {
    order: -1;
    aspect-ratio: 4 / 3;
  }

  .swap-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .swap-step::after { display: none; }

  .expansion-timeline {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease-out);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-stat-num {
    font-size: 1.5rem;
  }

  .swap-process {
    padding: 32px 20px;
  }

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

  .swap-visual {
    padding: 28px;
    margin: 48px 0 56px;
  }

  .swap-visual-content h3 {
    font-size: 1.5rem;
  }

  .swap-compare {
    padding: 40px 24px;
  }

  .swap-compare-grid {
    grid-template-columns: 1fr;
  }

  .swap-compare-header h3,
  .swap-gallery-header h3 {
    font-size: 1.5rem;
  }

  .swap-slideshow {
    aspect-ratio: 4 / 3;
  }

  .swap-steps {
    grid-template-columns: 1fr;
  }

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

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

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

  .partner-actions {
    flex-direction: column;
  }

  .partner-actions .btn {
    min-width: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .network-map {
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .contact-form-wrapper,
  .contact-info-card {
    padding: 24px 20px;
  }
}

/* ============================================
   Real Image Styles (Logo, Hero, Products)
   ============================================ */

/* Nav Logo Image */
.nav-logo-img {
  height: 40px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  transition: transform 0.3s var(--ease-spring);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.08);
}


/* Hero Visual Real Image */
.hero-visual-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 20px;
}

.hero-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

/* Product Card Real Image */
.product-image-real {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.product-image-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-spring);
}

.product-card:hover .product-image-real img {
  transform: scale(1.05);
}

.product-image-real.img-error {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-real.img-error::after {
  content: 'Image Coming Soon';
  color: var(--gray-400);
  font-size: 0.85rem;
  font-style: italic;
}

.product-image-real.img-error img {
  display: none;
}

/* Featured Product Card */
.product-card.featured-card {
  border: 2px solid var(--green-primary);
  box-shadow: 0 8px 40px rgba(0, 200, 83, 0.15);
}

.product-card.featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-glow) 0%, transparent 50%);
  pointer-events: none;
}

/* Product Badges - New Types */
.product-badge.featured {
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: white;
}

.product-badge.three-wheel {
  background: linear-gradient(135deg, #7C4DFF, #B388FF);
  color: white;
}

/* TBC Spec Styling */
.product-spec.tbc {
  opacity: 0.6;
}

.tbc-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--gray-200);
  color: var(--gray-500);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Product image area - adjust for real photos */
.product-image {
  aspect-ratio: 4/3;
}

/* Responsive adjustments for real images */
@media (max-width: 768px) {
  .nav-logo-img {
    height: 32px;
  }

  .footer-logo-img {
    height: 32px;
  }

  .hero-visual-img {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .nav-logo-img {
    height: 28px;
  }
}
