/* ============================================================
   CARTENZA EV — PREMIUM LIGHT AUTOMOTIVE DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* Premium Dark EV Theme Colors */
  --bg-void: #050505;
  /* Deep Space Void */
  --bg-deep: #0B0F14;
  /* Carbon Slate */
  --bg-surface: #111827;
  /* Frosted Glass Slate */
  --bg-card: rgba(17, 24, 39, 0.65);
  /* Frosted Dark Glass */
  --bg-glass: rgba(0, 230, 118, 0.03);
  /* Subtle Electric Green highlights */
  --bg-glass-lite: rgba(100, 255, 218, 0.02);
  /* Subtle Energy Glow highlights */

  /* Futuristic EV Green & Teal Accents */
  --accent-green: #00E676;
  /* Neo Electric Green */
  --accent-forest: #00C853;
  /* Accent Green */
  --accent-lime: #64FFDA;
  /* Electric Teal/Teal Energy Glow */
  --accent-dim: rgba(0, 230, 118, 0.08);
  --accent-lime-dim: rgba(100, 255, 218, 0.08);

  --accent-green-rgb: 0, 230, 118;
  --accent-lime-rgb: 100, 255, 218;

  /* Typography Colors */
  --text-pure: #E4E4E7;
  /* Zinc 200 - Silver white */
  --text-bright: #FFFFFF;
  /* Pure white contrast */
  --text-muted: #A1A1AA;
  /* Zinc 400 - Muted silver */
  --text-faint: #52525B;
  /* Zinc 600 */
  --text-dark: #050505;

  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  /* Frosted white border */
  --border-green: rgba(0, 230, 118, 0.15);
  --border-green-hi: rgba(0, 230, 118, 0.45);
  --border-lime: rgba(100, 255, 218, 0.15);
  --border-lime-hi: rgba(100, 255, 218, 0.45);

  --shadow-lux: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --shadow-glow: 0 0 30px rgba(0, 230, 118, 0.15), 0 0 60px rgba(100, 255, 218, 0.08);
  --shadow-green: 0 0 25px rgba(0, 230, 118, 0.12);

  /* Geometry */
  --radius-card: 24px;
  --radius-pill: 100px;
  --radius-sm: 12px;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Global Resets & Base ───────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-void);
  overflow-x: hidden;
  color: var(--text-pure);
}

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text-pure);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scroll Progress */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-lime));
  z-index: 10000;
  box-shadow: 0 0 10px rgba(22, 163, 74, 0.3);
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 11000;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

body.cursor-hover .custom-cursor {
  width: 20px;
  height: 20px;
  background-color: rgba(0, 230, 118, 0.2);
}

body.cursor-hover .custom-cursor-ring {
  width: 48px;
  height: 48px;
  border-color: var(--accent-lime);
}

/* Noise overlay for premium textural feel */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  outline: none;
}

/* Typography Utilities */
.text-green-gradient {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-lime) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ─── Shared Layout Header / Footer / FABs ────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: #FFFFFF;
  transition: background var(--transition-medium), border var(--transition-medium), height var(--transition-medium), box-shadow var(--transition-medium);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 8px 30px rgba(5, 5, 5, 0.06);
  height: 80px;
}

.nav-logo img {
  height: 110px;
  width: auto;
  transition: transform var(--transition-medium);
}

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

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(5, 5, 5, 0.6);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--accent-green);
  transition: width var(--transition-fast) var(--ease-out-expo), left var(--transition-fast) var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--text-dark);
}

.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

.nav-links a.active {
  color: var(--accent-green);
}

.nav-links a.active::after {
  width: 100%;
  left: 0;
}

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

.nav-btn {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border-green);
  background: rgba(22, 163, 74, 0.02);
  color: var(--accent-green);
  transition: all var(--transition-medium);
}

.nav-btn:hover {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-lime));
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 0 25px rgba(22, 163, 74, 0.25);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}

.hamburger-btn span {
  width: 22px;
  height: 1.5px;
  background: var(--text-pure);
  transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Nav Panel */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: 999;
  padding: 120px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-left: 1px solid var(--border-subtle);
  transition: right var(--transition-medium);
}

.mobile-nav-panel.open {
  right: 0;
}

.mobile-nav-panel a {
  font-size: 1.4rem;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  padding-bottom: 14px;
  transition: padding-left var(--transition-fast), color var(--transition-fast);
}

.mobile-nav-panel a:hover,
.mobile-nav-panel a.active {
  color: var(--accent-green);
  padding-left: 8px;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn-lux {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--transition-medium);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-lux-primary {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-forest) 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.15);
}

.btn-lux-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(22, 163, 74, 0.3);
}

.btn-lux-outline {
  border: 1px solid var(--border-green-hi);
  color: var(--text-pure);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.btn-lux-outline:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: rgba(22, 163, 74, 0.02);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.08);
}

/* Legacy BTN redirects for compatibility */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition-medium);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-forest) 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(22, 163, 74, 0.3);
}

.btn-outline {
  border: 1px solid var(--border-green-hi);
  color: var(--text-pure);
  background: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: rgba(22, 163, 74, 0.02);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

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

.btn-sm {
  padding: 8px 20px;
  font-size: 0.72rem;
}

/* ─── Hero Cinematic (index.html) ───────────────────────── */
.hero-sec {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 6vw 100px;
  /* Smooth left-to-right premium light gradient, dark behind vehicle */
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.9) 0%, transparent 60%),
    radial-gradient(circle at 75% 50%, rgba(0, 213, 99, 0.06) 0%, transparent 60%),
    linear-gradient(90deg, #ffffff 0%, #f8f9fb 25%, #eef1f4 50%, #dde3e8 72%, #25292f 100%);
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.04; /* Extremely faint grayscale background imagery */
  filter: grayscale(100%);
  pointer-events: none;
}

.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  /* Transparent overlay to allow light gradient through, subtle right-side blending */
  background: linear-gradient(to right, transparent 50%, rgba(37, 41, 47, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Futuristic grid-mesh with radial mask - extremely light grid */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 75% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 75% 50%, black 20%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.07;
}

/* 3D Rotating Rings behind Hero Vehicle (Engineering Lines) */
.hero-rotator-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 580px;
  height: 580px;
  border: 1px dashed rgba(0, 213, 99, 0.12);
  border-radius: 50%;
  animation: rotate-clockwise 30s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.hero-rotator-ring-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border: 1px solid rgba(0, 213, 99, 0.06);
  border-radius: 50%;
  animation: rotate-counter-clockwise 20s linear infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes rotate-clockwise {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-counter-clockwise {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* Pulsing background glow element */
.hero-vehicle-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 213, 99, 0.06) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
  animation: pulse-glow 7s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.95);
  }
  50% {
    opacity: 1.1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* Floating Particles Canvas backdrop */
.particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

/* 50/50 Premium Split Layout */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  gap: 60px;
}

.hero-left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #00b852; /* Darker green for contrast on light background */
  margin-bottom: 24px;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00b852;
  box-shadow: 0 0 10px #00b852;
  animation: pulse-green 2s infinite;
}

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

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #111111; /* Dark charcoal text color */
}

.hero-headline em {
  font-style: italic;
  font-family: var(--font-serif);
  color: #00D563; /* Green Highlight */
}

.hero-subheadline {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: #5B6470; /* Slate Gray text color */
  max-width: 540px;
  margin-bottom: 40px;
}

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

.hero-trust-bar {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5B6470; /* Slate gray text color for contrast */
}

.trust-icon {
  color: #00b852;
  font-weight: bold;
}

/* Right stage with vehicle container and specs */
.hero-right-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  padding: 40px;
}

.hero-stage-depth {
  position: relative;
  width: 100%;
  max-width: 560px;
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

/* Vehicle Wrapper for separate hover transition */
.hero-vehicle-wrapper {
  position: relative;
  width: 100%;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Hover effect on vehicle wrapper */
.hero-vehicle-wrapper:hover {
  transform: translateY(-10px) scale(1.03);
}

.hero-vehicle-wrapper:hover .hero-vehicle-shadow {
  transform: scale(0.92) translateY(5px);
  opacity: 0.7;
}

/* Vehicle image: size increased, centered, shifted right */
.hero-vehicle-render {
  width: 125%; /* Increased size by ~25% */
  height: auto;
  position: relative;
  z-index: 2;
  will-change: transform;
  transform: translateX(12%); /* Shifted right, extending outside boundaries */
  pointer-events: auto;
  display: block;
}

/* Multi-layered ground shadow */
.hero-vehicle-shadow {
  position: absolute;
  bottom: -6%;
  left: 10%;
  right: 10%;
  height: 25px;
  /* Soft contact shadow + broad ambient shadow + green reflected glow */
  background: 
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(0, 0, 0, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(0, 0, 0, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(34, 197, 94, 0.12) 0%, transparent 60%);
  filter: blur(8px);
  z-index: 1;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s;
}

/* Uniform Glassmorphic Spec Cards */
.floating-spec-card {
  position: absolute;
  width: 175px;
  height: 82px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(34, 197, 94, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 5;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.floating-spec-card:hover {
  border-color: var(--accent-green);
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-4px) !important; /* overrides GSAP float animations slightly */
}

.floating-spec-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--accent-green), #4ade80);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.floating-spec-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Symmetric Placement around the vehicle */
.f-spec-1 { /* Top Left: Range */
  top: 10%;
  left: -80px;
}

.f-spec-2 { /* Top Right: Battery */
  top: 10%;
  right: -80px;
}

.f-spec-3 { /* Bottom Left: Motor */
  bottom: 10%;
  left: -80px;
}

.f-spec-4 { /* Bottom Right: Speed */
  bottom: 10%;
  right: -80px;
}

/* ─── Editorial Header Details (Subpages) ───────────────── */
.page-header {
  padding: 160px 4vw 80px;
  background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 100%);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  text-align: center;
}

/* Page Header Background Images (Low opacity dark blending) */
.page-header-about {
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0.88) 0%, rgba(11, 15, 20, 0.94) 100%), url('../images/WhatsApp Image 2026-06-08 at 2.08.33 PM.jpeg');
  background-size: cover;
  background-position: center;
}

.page-header-vehicles {
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0.88) 0%, rgba(11, 15, 20, 0.94) 100%), url('../images/WhatsApp Image 2026-06-08 at 2.08.23 PM.jpeg');
  background-size: cover;
  background-position: center;
}

.page-header-gallery {
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0.88) 0%, rgba(11, 15, 20, 0.94) 100%), url('../images/WhatsApp Image 2026-06-08 at 2.08.30 PM.jpeg');
  background-size: cover;
  background-position: center;
}

.page-header-contact {
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0.88) 0%, rgba(11, 15, 20, 0.94) 100%), url('../images/WhatsApp Image 2026-06-08 at 2.08.18 PM.jpeg');
  background-size: cover;
  background-position: center;
}

.page-header-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 400;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-header-title em {
  font-style: italic;
  color: var(--accent-green);
}

.page-header-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── General Layout Structure ───────────────────────────── */
.lux-section,
.section {
  padding: 140px 6vw;
  position: relative;
  background-color: var(--bg-void);
  border-bottom: 1px solid var(--border-subtle);
}

.lux-section-alt,
.section-alt {
  background-color: var(--bg-deep);
}

.lux-container,
.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.lux-sec-header,
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.lux-sec-eyebrow,
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-green);
  background: var(--accent-dim);
  border: 1px solid var(--border-green);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  display: inline-block;
}

.lux-sec-title,
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-bright);
}

.lux-sec-title em,
.section-title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--accent-green);
}

.lux-sec-desc,
.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 20px;
  font-weight: 300;
}

/* Divider styling */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-green), transparent);
  position: relative;
}

/* ─── SECTION 1: Premium Statistics counters ─────────────── */
.stats-strip-container {
  padding: 40px 6vw;
  background: var(--bg-void);
}

.stats-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  overflow: hidden;
  box-shadow: var(--shadow-lux);
}

.stats-col-item {
  padding: 50px 30px;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
  position: relative;
  transition: background var(--transition-medium);
}

.stats-col-item:last-child {
  border-right: none;
}

.stats-col-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.stats-col-item:hover {
  background: rgba(15, 23, 42, 0.01);
}

.stats-col-item:hover::after {
  opacity: 1;
}

.stats-count-value {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 12px;
}

.stats-count-lbl {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 300;
}

/* ─── SECTION 2: Who We Serve Cards ──────────────────────── */
.serve-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.serve-lux-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: transform var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.serve-lux-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-green-hi);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.serve-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 1.2s var(--ease-out-expo);
}

.serve-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(100%) grayscale(10%);
  transition: transform 1.2s var(--ease-out-expo), filter 0.8s;
}

.serve-lux-card:hover .serve-card-bg img {
  transform: scale(1.06);
  filter: brightness(0.7) contrast(102%) grayscale(0%);
}

.serve-card-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
  z-index: 1;
}

.serve-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.serve-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.serve-card-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-lime);
  border: 1px solid var(--border-lime-hi);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(132, 204, 22, 0.05);
}

.serve-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #FFFFFF;
  /* Remain white on dark card overlay */
}

.serve-card-benefit {
  font-size: 0.82rem;
  color: #CBD5E1;
  /* Muted light color on dark grid overlay */
  line-height: 1.5;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), opacity var(--transition-medium), margin-top var(--transition-medium);
}

.serve-lux-card:hover .serve-card-benefit {
  max-height: 80px;
  opacity: 1;
  margin-top: 10px;
}

/* ─── SECTION 3: Vehicle Cards Grid ──────────────────────── */
.fleet-grid-row,
.vehicle-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fleet-showcase-card,
.vehicle-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium);
  box-shadow: var(--shadow-lux);
  display: flex;
  flex-direction: column;
}

.fleet-showcase-card:hover,
.vehicle-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-green);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.fleet-img-frame,
.vehicle-img-wrap {
  position: relative;
  height: 240px;
  background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.fleet-img-frame img,
.vehicle-img-wrap img {
  width: 85%;
  height: auto;
  object-fit: contain;
  transition: transform var(--transition-slow);
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.08));
}

.fleet-showcase-card:hover .fleet-img-frame img,
.vehicle-card:hover .vehicle-img-wrap img {
  transform: scale(1.05) translateY(-4px);
}

.fleet-card-badge,
.vehicle-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.badge-gold-lux,
.badge-new,
.badge-seller {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-forest));
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.2);
}

.fleet-card-details,
.vehicle-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fleet-card-title,
.vehicle-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 6px;
}

.fleet-card-cap,
.vehicle-tagline {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--accent-green);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  display: block;
}

.fleet-specs-grid,
.vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
  padding: 16px;
  background: #F8FAFC;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.fleet-spec-cell,
.spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fleet-spec-lbl,
.spec-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.fleet-spec-val,
.spec-value {
  font-size: 0.9rem;
  color: var(--text-bright);
  font-weight: 600;
}

.fleet-card-ctas {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  margin-top: auto;
}

.btn-showcase-main {
  padding: 12px 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-forest));
  color: #FFFFFF;
  text-align: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-showcase-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(22, 163, 74, 0.2);
}

.btn-showcase-sec {
  padding: 12px 18px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid var(--border-green-hi);
  color: var(--accent-green);
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
}

.btn-showcase-sec:hover {
  border-color: var(--accent-green);
  background: rgba(22, 163, 74, 0.02);
}

/* vehicle detail page related features list */
.vehicle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.feature-chip {
  font-size: 0.7rem;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  background: #F1F5F9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── SECTION 4: Why Bento Grid Layout ───────────────────── */
.bento-grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 24px;
}

.bento-lux-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium);
  box-shadow: var(--shadow-lux);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-lux-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-green);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.bento-lux-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(22, 163, 74, 0.015), transparent 70%);
  pointer-events: none;
}

.bento-card-span-2w {
  grid-column: span 2;
}

.bento-card-span-2h {
  grid-row: span 2;
  justify-content: space-between;
}

.bento-card-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(22, 163, 74, 0.05);
  border: 1px solid var(--border-green);
  display: grid;
  place-items: center;
  color: var(--accent-green);
  font-size: 1.4rem;
  margin-bottom: 24px;
  transition: transform var(--transition-medium), background var(--transition-medium);
}

.bento-lux-card:hover .bento-card-icon-wrap {
  transform: scale(1.08) rotate(5deg);
  background: rgba(22, 163, 74, 0.1);
}

.bento-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 12px;
}

.bento-card-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── SECTION 5: Luxury Experience ──────────────────────── */
.experience-showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-interactive-visual {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lux);
}

.experience-interactive-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 1.5s var(--ease-out-expo);
}

.experience-interactive-visual:hover img {
  transform: scale(1.02);
}

.experience-tag-floating {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-green);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-green);
  z-index: 2;
  box-shadow: var(--shadow-lux);
}

.exp-details-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.exp-detail-node {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.exp-detail-node:last-child {
  border-bottom: none;
}

.exp-detail-node.active,
.exp-detail-node:hover {
  border-color: rgba(22, 163, 74, 0.2);
}

.exp-node-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 1px solid var(--border-subtle);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
  font-weight: 600;
}

.exp-detail-node.active .exp-node-icon,
.exp-detail-node:hover .exp-node-icon {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: rgba(22, 163, 74, 0.05);
}

.exp-node-header {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 6px;
}

.exp-node-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── SECTION 6: Technology Storytelling ───────────────── */
.tech-scroll-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  position: relative;
}

.tech-sticky-stage {
  position: sticky;
  top: 140px;
  height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-glow-board {
  position: relative;
  width: 100%;
  height: 400px;
  background: radial-gradient(circle at 50% 50%, rgba(22, 163, 74, 0.08) 0%, transparent 60%), #F8FAFC;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-lux);
}

.tech-glow-board img {
  position: absolute;
  width: 90%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  opacity: 0;
  transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.tech-glow-board img.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.02);
}

.tech-story-line {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding: 60px 0;
}

.tech-step-item {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
  box-shadow: var(--shadow-lux);
}

.tech-step-item.active {
  border-color: var(--border-green-hi);
  box-shadow: 0 15px 35px rgba(22, 163, 74, 0.05);
}

.tech-step-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--accent-green);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}

.tech-step-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 14px;
}

.tech-step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── SECTION 7: Client Testimonials Carousel ───────────── */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.carousel-outer-wrap {
  position: relative;
  width: 100%;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform var(--transition-slow);
  width: max-content;
}

.testi-lux-card,
.testi-card {
  width: 380px;
  background: var(--bg-card);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-lux);
  transition: border-color var(--transition-medium), transform var(--transition-medium);
  display: flex;
  flex-direction: column;
}

.testi-lux-card:hover,
.testi-card:hover {
  border-color: var(--border-green);
  transform: translateY(-5px);
}

.testi-rating,
.testi-stars {
  color: var(--accent-green);
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.testi-quote-txt,
.testi-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 30px;
  font-weight: 300;
}

.testi-profile-row,
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.testi-avatar-frame,
.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-forest));
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: bold;
  color: #FFFFFF;
  flex-shrink: 0;
}

.testi-avatar-frame img,
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-bio-name,
.testi-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-bright);
}

.testi-bio-org,
.testi-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.carousel-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}

.nav-arrow-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-green-hi);
  background: #FFFFFF;
  color: var(--accent-green);
  display: grid;
  place-items: center;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-lux);
}

.nav-arrow-btn:hover {
  border-color: var(--accent-green);
  background: rgba(22, 163, 74, 0.04);
  transform: scale(1.05);
}

/* ─── SECTION 8: Brand Story ────────────────────────────── */
.story-layout-row,
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-editorial-lead {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.35;
  color: var(--text-bright);
  margin-bottom: 30px;
}

.story-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-paragraphs p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.story-media-panel,
.why-visual {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lux);
}

.story-media-panel img,
.why-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: contrast(100%) brightness(100%);
}

/* Legacy values and timelines layout inside About page */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: var(--border-subtle);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  right: -6px;
  top: 15px;
  background-color: var(--accent-green);
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(even)::after {
  left: -6px;
}

.timeline-year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-green);
  margin-bottom: 6px;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-bright);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* About Brand Values card system */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  border-radius: var(--radius-card);
  transition: transform var(--transition-medium);
  box-shadow: var(--shadow-lux);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-green);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-bright);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* About Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition-medium);
  box-shadow: var(--shadow-lux);
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-green);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-forest));
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-bright);
  margin-bottom: 4px;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--accent-green);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* About/Heritage features-grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  border-radius: var(--radius-card);
  transition: var(--transition-medium);
  box-shadow: var(--shadow-lux);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-green);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-bright);
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── SECTION 9: Final Conversion CTA ───────────────────── */
.final-cta-section,
.cta-banner {
  padding: 120px 6vw;
  background-color: var(--bg-void);
  position: relative;
}

.final-cta-billboard {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.94) 100%), url('../images/A6-Lifestyle2.webp');
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-card);
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lux);
}

.cta-banner {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.94) 100%), url('../images/A6-Lifestyle2.webp');
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-card);
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lux);
}

.final-cta-billboard::before,
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(22, 163, 74, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-h,
.cta-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: #1e293b;
  margin-bottom: 20px;
}

.final-cta-h em,
.cta-banner-title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--accent-green);
}

.final-cta-sub,
.cta-banner-subtitle {
  font-size: 1.05rem;
  color: #475569;
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.75;
  font-weight: 300;
}

.final-cta-buttons,
.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Contact Forms and FAQs ────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.04);
  border: 1px solid var(--border-green);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--accent-green);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--text-pure);
  line-height: 1.6;
}

.map-embed {
  position: relative;
  height: 240px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  margin: 30px 0;
  box-shadow: var(--shadow-lux);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
}

.contact-form-wrap {
  border-radius: var(--radius-card);
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 0%, rgba(0, 230, 118, 0.06), transparent 60%);
  pointer-events: none;
}

#form-content,
.form-success-overlay {
  position: relative;
  z-index: 1;
}

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

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

.form-group.full {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: #0B0F14;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-bright);
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

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

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: var(--border-green-hi);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-green);
  background: #05070a;
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.15);
  outline: none;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23A1A1AA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-select option {
  background: var(--bg-deep);
  color: var(--text-bright);
}

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

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: #EF4444;
}

.form-error {
  display: none;
  font-size: 0.72rem;
  color: #EF4444;
  margin-top: 6px;
}

.form-group.error .form-error {
  display: block;
}

#submit-btn {
  position: relative;
}

#submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* FAQ accordion styling */
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-bright);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-green);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent-green);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

/* ─── Gallery masonry and zoom modals ───────────────────── */
.masonry-grid {
  column-count: 3;
  column-gap: 20px;
}

.masonry-item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  break-inside: avoid;
  margin-bottom: 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lux);
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.8) 0%, rgba(22, 163, 74, 0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-medium);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-overlay-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: white;
  font-weight: 500;
}

.masonry-overlay-zoom {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  backdrop-filter: blur(4px);
  transform: scale(0.7);
  transition: transform var(--transition-medium);
}

.masonry-item:hover .masonry-overlay-zoom {
  transform: scale(1);
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}

.video-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-medium);
  cursor: pointer;
  box-shadow: var(--shadow-lux);
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-green);
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border-subtle);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(22, 163, 74, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #FFFFFF;
  transition: var(--transition-medium);
  box-shadow: 0 0 30px rgba(22, 163, 74, 0.3);
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 50px rgba(22, 163, 74, 0.45);
}

.video-info {
  padding: 16px 20px;
}

.video-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-bright);
  margin-bottom: 4px;
  font-weight: 600;
}

.video-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}

/* Pending / coming-soon video state */
.video-card-pending {
  cursor: default;
}

.video-card-pending .video-thumb {
  filter: grayscale(45%) brightness(0.65);
}

.video-coming-soon-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(10, 12, 10, 0.85);
  border: 1px solid var(--border-green);
  color: var(--accent-green);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* Lightbox zoom modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(15px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
  border: 1px solid var(--border-subtle);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2.5rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--text-bright);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-pure);
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: var(--shadow-lux);
}

.lightbox-nav:hover {
  background: #F1F5F9;
  color: var(--text-bright);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(15px);
}

.video-modal.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal-inner {
  width: 90vw;
  max-width: 960px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
  border: 1px solid var(--border-subtle);
}

.video-modal-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.video-modal-close:hover {
  color: var(--text-bright);
}

/* ─── Vehicle Detail Tabs & Layout ───────────────────────── */
.detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

.detail-main-img {
  width: 100%;
  background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
  border-radius: var(--radius-card);
  padding: 40px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lux);
}

.detail-main-img img {
  width: 90%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(15, 23, 42, 0.08));
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.detail-thumb {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-lux);
}

.detail-thumb:hover,
.detail-thumb.active {
  border-color: var(--accent-green);
  background: rgba(22, 163, 74, 0.02);
}

.detail-thumb img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.detail-model-name {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--text-bright);
  line-height: 1.15;
  margin-bottom: 16px;
}

.detail-tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}

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

.detail-spec-table td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.detail-spec-table tr:hover td {
  background: rgba(15, 23, 42, 0.005);
}

.detail-spec-table td:first-child {
  color: var(--text-muted);
  font-weight: 300;
}

.detail-spec-table td:last-child {
  color: var(--text-bright);
  font-weight: 600;
  text-align: right;
}

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.detail-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.detail-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 10px 12px;
  background: #F8FAFC;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  font-weight: 300;
  transition: all 0.3s ease;
}

.detail-feature-item:hover {
  background: #FFFFFF;
  border-color: var(--accent-green);
  transform: translateY(-2px);
}

.detail-feature-item::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
}

.price-from {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.price-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-green);
}

.price-gst {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 32px;
}

.tab-btn {
  padding: 12px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  font-family: var(--font-body);
  background: none;
  margin-bottom: -1px;
}

.tab-btn.active {
  color: var(--accent-green);
  border-bottom-color: var(--accent-green);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* Model comparison table on vehicles.html */
table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

td {
  color: var(--text-muted);
}

/* ─── Footer Section ─────────────────────────────────────── */
.redesigned-footer,
.footer {
  background-color: #050505;
  /* Deep black void base */
  border-top: 1px solid var(--border-subtle);
  padding: 100px 6vw 40px;
  position: relative;
  color: #F8FAFC;
}

.footer-main-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-branding-block {
  display: flex;
  flex-direction: column;
}

.footer-logo-img {
  height: 108px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 24px;
  background: #ffffff;
  border-radius: 10px;
  padding: 6px 12px;
}

.footer-brand-tagline,
.footer-brand-name {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 0.86rem;
  color: #94A3B8;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 30px;
  max-width: 320px;
}

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

.footer-social-panel a,
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  transition: all var(--transition-fast);
  color: #FFFFFF;
}

.footer-social-panel a:hover,
.footer-social a:hover {
  border-color: var(--accent-green);
  background: rgba(22, 163, 74, 0.1);
  transform: translateY(-2px);
  color: var(--accent-green);
}

.footer-links-title,
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 28px;
  font-weight: 600;
}

.footer-links-list,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.footer-links-list a,
.footer-links a {
  font-size: 0.84rem;
  color: #94A3B8;
  font-weight: 300;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links-list a:hover,
.footer-links a:hover {
  color: var(--accent-green);
  transform: translateX(4px);
}

.footer-contact-item {
  font-size: 0.84rem;
  color: #94A3B8;
  line-height: 1.7;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact-item a:hover {
  color: var(--accent-green);
}

.footer-floor-row,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright-txt,
.footer-copyright {
  font-size: 0.76rem;
  color: #64748B;
  font-weight: 300;
}

.footer-floor-links,
.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-floor-links a,
.footer-bottom-links a {
  font-size: 0.76rem;
  color: #64748B;
  font-weight: 300;
}

.footer-floor-links a:hover,
.footer-bottom-links a:hover {
  color: #94A3B8;
}

/* ─── Back To Top and WhatsApp FABs ─────────────────────── */
.luxury-fab-panel,
.fab-group {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.luxury-fab,
.fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-green);
  display: grid;
  place-items: center;
  color: var(--accent-green);
  box-shadow: var(--shadow-lux);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.luxury-fab:hover,
.fab:hover {
  transform: translateY(-3px);
}

.luxury-fab-top,
.fab-top {
  border-color: var(--border-green);
  color: var(--accent-green);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.luxury-fab-top.visible,
.fab-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.luxury-fab-top:hover,
.fab-top:hover {
  background: rgba(22, 163, 74, 0.05);
  border-color: var(--accent-lime);
}

.luxury-fab-whatsapp,
.fab-whatsapp {
  background: #25D366;
  color: white;
  border: none;
}

.luxury-fab-whatsapp:hover,
.fab-whatsapp:hover {
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* ─── Page Fade animations and scroll reveals ───────────── */
.reveal-on-scroll,
.reveal,
.reveal-left,
.reveal-right,
.stagger-children {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal-on-scroll.revealed,
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.stagger-children.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Media Queries / Responsiveness ─────────────────────── */
@media (max-width: 1200px) {
  .serve-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bento-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .bento-card-span-2w {
    grid-column: span 2;
  }

  .fleet-grid-row,
  .vehicle-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-main-grid>div:last-child,
  .footer-grid>div:last-child {
    grid-column: span 3;
  }
}

@media (max-width: 991px) {
  .navbar {
    padding: 0 40px;
  }

  .nav-links,
  .nav-btn {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .hero-stage-depth {
    max-width: 440px;
  }
  .floating-spec-card {
    width: 145px;
    height: 72px;
    padding: 10px 12px;
  }
  .floating-spec-val {
    font-size: 1.25rem;
  }
  .f-spec-1 { left: -50px; }
  .f-spec-2 { right: -50px; }
  .f-spec-3 { left: -50px; }
  .f-spec-4 { right: -50px; }

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

  .stats-col-item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .stats-col-item:nth-child(even) {
    border-left: 1px solid var(--border-subtle);
  }

  .experience-showcase-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tech-scroll-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tech-sticky-stage {
    position: relative;
    top: 0;
    height: auto;
    margin-bottom: 40px;
  }

  .tech-glow-board {
    height: 300px;
  }

  .tech-story-line {
    gap: 40px;
    padding: 0;
  }

  .story-layout-row,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .timeline::after {
    left: 40px;
  }

  .timeline-item {
    width: 100%;
    text-align: left !important;
    padding-left: 80px;
  }

  .timeline-item::after {
    left: 34px !important;
  }
}

@media (max-width: 768px) {

  .hero-sec {
    padding: 120px 24px 60px;
  }
  .hero-container {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 40px;
  }
  .hero-left-content {
    align-items: center;
  }
  .hero-tag {
    justify-content: center;
  }
  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-actions {
    justify-content: center;
  }
  .hero-trust-bar {
    justify-content: center;
    gap: 20px;
  }
  .hero-right-stage {
    order: 2; /* Put vehicle below text */
    padding: 20px 0;
  }
  .hero-stage-depth {
    max-width: 360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    perspective: none;
  }
  .hero-vehicle-wrapper {
    grid-column: span 2;
    margin-bottom: 10px;
  }
  .hero-vehicle-render {
    width: 105%;
    transform: none !important;
  }
  .hero-vehicle-shadow {
    bottom: -4%;
    height: 15px;
  }
  .floating-spec-card {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    min-height: 64px;
    padding: 8px 12px;
    align-items: center;
    transform: none !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }
  .floating-spec-val {
    font-size: 1.15rem;
  }
  .floating-spec-lbl {
    font-size: 0.6rem;
    margin-top: 2px;
  }

  .lux-section,
  .section {
    padding: 100px 24px;
  }

  .serve-cards-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid-row,
  .vehicle-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid-layout {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-card-span-2w {
    grid-column: span 1;
  }

  .bento-lux-card {
    padding: 24px;
    min-height: 200px;
  }

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

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap {
    padding: 30px;
  }

  .footer-main-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-main-grid>div,
  .footer-grid>div {
    grid-column: span 1 !important;
  }

  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.2rem;
  }

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

  .stats-col-item {
    border-left: none !important;
    border-right: none !important;
  }

  .testi-lux-card,
  .testi-card {
    width: 280px;
    padding: 24px;
  }

  .fleet-card-ctas {
    grid-template-columns: 1fr;
  }

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

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

  .masonry-grid {
    column-count: 1;
  }

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

  .form-group.full {
    grid-column: auto;
  }
}

/* ═══ FUTURISTIC LOADING SCREEN ═══════════════════════════ */
.ev-loader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 12000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.ev-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-wireframe-svg {
  width: 320px;
  height: auto;
  stroke: var(--accent-green);
  fill: none;
  stroke-width: 1.5;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: draw-wireframe 4s var(--ease-out-expo) forwards;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 15px rgba(0, 230, 118, 0.2));
}

.loader-bar-wrap {
  width: 240px;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-pill);
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
}

.loader-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-lime));
  box-shadow: 0 0 10px var(--accent-green);
  transition: width 0.1s linear;
}

.loader-pct {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes draw-wireframe {
  to {
    stroke-dashoffset: 0;
  }
}

/* ═══ FUTURISTIC 3D DECO SHAPE SYSTEM ═════════════════════ */
.futuristic-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  animation: float-shape 14s ease-in-out infinite alternate;
}

.shape-sphere {
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 230, 118, 0.2) 0%, rgba(0, 0, 0, 0) 75%);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05), 0 0 40px rgba(0, 230, 118, 0.08);
}

.shape-ring {
  border-radius: 50%;
  border: 1.5px solid rgba(100, 255, 218, 0.15);
  box-shadow: 0 0 20px rgba(100, 255, 218, 0.08);
}

.shape-hexagon {
  width: 100px;
  height: 100px;
  background: rgba(17, 24, 39, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 230, 118, 0.15);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.05);
}

@keyframes float-shape {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  100% {
    transform: translateY(-40px) rotate(45deg) scale(1.05);
  }
}

/* Specific shape coordinates */
.shape-1 {
  top: 15%;
  left: 5%;
  width: 80px;
  height: 80px;
}

.shape-2 {
  top: 40%;
  right: 4%;
  width: 120px;
  height: 120px;
  animation-duration: 18s;
}

.shape-3 {
  bottom: 15%;
  left: 8%;
  width: 100px;
  height: 100px;
  animation-duration: 22s;
}

.shape-4 {
  top: 75%;
  right: 8%;
  width: 90px;
  height: 90px;
}

/* 3D Showcase Spotlights */
.spotlight {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 500px;
  background: radial-gradient(ellipse at top, rgba(0, 230, 118, 0.15), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Contact Form Success Overlay styling */
.form-success-overlay {
  display: none;
}

.form-success-overlay.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  min-height: 400px;
  opacity: 0;
  animation: formFadeIn 0.5s var(--ease-out-expo) forwards;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.form-success-overlay .btn-outline {
  background: transparent;
  color: var(--accent-green);
  border-color: var(--border-green-hi);
}

.form-success-overlay .btn-outline:hover {
  background: var(--accent-dim);
  border-color: var(--accent-green);
}

@keyframes formFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}