/* Dharti Auto - Revolutionary Automotive CSS with Premium Color Scheme */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Oswald:wght@300;400;500;600;700&family=Rajdhani:wght@300;400;500;600;700&family=Electrolize:wght@400&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary Color Palette - Dharti Auto Theme */
  --primary-red: #DC2626;        /* Bold Automotive Red */
  --primary-orange: #F59E0B;     /* Vibrant Orange */
  --primary-blue: #1E40AF;       /* Deep Blue */
  --primary-gold: #FCBF49;       /* Premium Gold */
  
  /* Secondary Colors */
  --red-light: #EF4444;
  --red-dark: #B91C1C;
  --orange-light: #FBBF24;
  --orange-dark: #D97706;
  --blue-light: #3B82F6;
  --blue-dark: #1D4ED8;
  --gold-light: #FDE047;
  --gold-dark: #CA8A04;
  
  /* Accent Colors */
  --steel-blue: #4682B4;
  --charcoal: #2C3E50;
  --silver: #C0C0C0;
  --automotive-gray: #1B263B;
  --premium-silver: #E0E1DD;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--primary-gold) 100%);
  --gradient-automotive: linear-gradient(135deg, var(--primary-orange) 0%, var(--charcoal) 100%);
  --gradient-fire: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
  --gradient-premium: linear-gradient(135deg, var(--automotive-gray) 0%, var(--premium-silver) 100%);
  
  /* Typography */
  --font-primary: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Oswald', var(--font-primary);
  --font-accent: 'Rajdhani', var(--font-primary);
  --font-tech: 'Electrolize', monospace;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 20px rgba(255, 69, 0, 0.4);
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: linear-gradient(135deg, #0F0F23 0%, #1B1B2F 25%, #162447 50%, #1F4068 75%, #0F3460 100%);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
  z-index: -2;
  pointer-events: none;
}

/* Custom Cursor */
#custom-cursor {
  width: 24px;
  height: 24px;
  border: 3px solid var(--primary-orange);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.1s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  background: rgba(245, 158, 11, 0.1);
  backdrop-filter: blur(4px);
}

#custom-cursor.active {
  opacity: 1;
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

#custom-cursor::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 50%;
  animation: cursorPulse 2s ease-in-out infinite;
}

@keyframes cursorPulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.5); }
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-shapes::before,
.floating-shapes::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}

.floating-shapes::before {
  background: var(--gradient-fire);
  top: 10%;
  left: 80%;
  animation-delay: 0s;
}

.floating-shapes::after {
  background: var(--gradient-automotive);
  bottom: 10%;
  left: 10%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 69, 0, 0.2);
  z-index: 1000;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
}

.navbar-premium {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(220, 38, 38, 0.15);
  z-index: 1000;
  padding: 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

.nav-glass-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  position: relative;
  background: rgba(255,255,255,0.04);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(220,38,38,0.08);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  z-index: 2;
}

.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-premium-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.3) 0%, transparent 70%);
  animation: logoPulse 3s ease-in-out infinite;
  z-index: -1;
}

.logo-energy-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,38,38,0.2) 0%, transparent 70%);
  animation: logoPulse 3s ease-in-out infinite;
  z-index: -1;
}

.brand-identity {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-motto {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--gray-300);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 40px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 2;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.8) 0%, rgba(220, 38, 38, 0.8) 100%);
  border-radius: 40px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
  transform: scale(1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  transform: translateY(-2px);
}

.nav-indicator {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 6px;
  height: 6px;
  background: var(--primary-gold);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link.active .nav-indicator {
  transform: translateX(-50%) scale(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-cta-btn {
  position: relative;
  background: linear-gradient(135deg, #FF4500 0%, #DC2626 50%, #FFD700 100%);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 32px rgba(255, 69, 0, 0.3);
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s;
}

.nav-cta-btn:hover::before {
  left: 100%;
}

.nav-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 48px rgba(255, 69, 0, 0.5);
}

.btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, transparent 70%);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.nav-cta-btn:hover .btn-glow {
  opacity: 1;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background: linear-gradient(135deg, #FF4500 0%, #FFD700 100%);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu-toggle:hover .hamburger-line {
  background: linear-gradient(135deg, #DC2626 0%, #FF4500 100%);
}

/* Hero Section - Revolutionary Design */
.hero-revolution {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) 0 var(--space-2xl);
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
  overflow: hidden;
}

.hero-cosmic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cosmic-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="particle1" cx="50%%" cy="50%%" r="50%%"><stop offset="0%%" style="stop-color:%23DC2626;stop-opacity:0.8"/><stop offset="100%%" style="stop-color:%23DC2626;stop-opacity:0"/></radialGradient></defs><circle cx="100" cy="150" r="2" fill="url(%23particle1)"><animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/></circle><circle cx="300" cy="100" r="3" fill="url(%23particle1)"><animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite"/></circle><circle cx="500" cy="200" r="2" fill="url(%23particle1)"><animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/></circle><circle cx="800" cy="120" r="3" fill="url(%23particle1)"><animate attributeName="opacity" values="0;1;0" dur="5s" repeatCount="indefinite"/></circle></svg>') no-repeat;
  background-size: cover;
  opacity: 0.3;
  animation: particleFloat 20s ease-in-out infinite;
}

.cosmic-waves {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(220, 38, 38, 0.1) 40%, transparent 50%),
              linear-gradient(-45deg, transparent 30%, rgba(245, 158, 11, 0.1) 40%, transparent 50%);
  animation: waveFlow 15s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes waveFlow {
  0%, 100% { 
    background-position: 0% 0%, 100% 100%;
    opacity: 0.3;
  }
  50% { 
    background-position: 100% 50%, 0% 50%;
    opacity: 0.6;
  }
}

.hero-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content-zone {
  animation: heroSlideIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(50px);
}

@keyframes heroSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Status Badges */
.hero-status-badges {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.status-badge.premium {
  background: rgba(220, 38, 38, 0.2);
  color: #EF4444;
  border-color: rgba(220, 38, 38, 0.3);
}

.status-badge.certified {
  background: rgba(245, 158, 11, 0.2);
  color: #F59E0B;
  border-color: rgba(245, 158, 11, 0.3);
}

.status-badge:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
}

.badge-pulse {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 8px;
  height: 8px;
  background: var(--primary-red);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.5); }
}

.badge-label {
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Revolutionary Hero Title */
.hero-title-revolutionary {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-xl);
  color: var(--white);
  letter-spacing: -0.02em;
}

.title-line-container {
  overflow: hidden;
  margin-bottom: 0.2em;
}

.title-word {
  display: inline-block;
  perspective: 1000px;
}

.word-char {
  display: inline-block;
  opacity: 0;
  transform: rotateY(90deg) translateZ(50px);
  animation: charReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: rotateY(0deg) translateZ(0px);
  }
}

.title-word[data-word="Unleashing"] .word-char:nth-child(1) { animation-delay: 0.1s; }
.title-word[data-word="Unleashing"] .word-char:nth-child(2) { animation-delay: 0.15s; }
.title-word[data-word="Unleashing"] .word-char:nth-child(3) { animation-delay: 0.2s; }
.title-word[data-word="Unleashing"] .word-char:nth-child(4) { animation-delay: 0.25s; }
.title-word[data-word="Unleashing"] .word-char:nth-child(5) { animation-delay: 0.3s; }
.title-word[data-word="Unleashing"] .word-char:nth-child(6) { animation-delay: 0.35s; }
.title-word[data-word="Unleashing"] .word-char:nth-child(7) { animation-delay: 0.4s; }
.title-word[data-word="Unleashing"] .word-char:nth-child(8) { animation-delay: 0.45s; }
.title-word[data-word="Unleashing"] .word-char:nth-child(9) { animation-delay: 0.5s; }
.title-word[data-word="Unleashing"] .word-char:nth-child(10) { animation-delay: 0.55s; }

.gradient-flame {
  background: linear-gradient(135deg, #DC2626 0%, #F59E0B 25%, #FCBF49 50%, #DC2626 75%, #F59E0B 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: flameShift 3s ease-in-out infinite;
}

@keyframes flameShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.title-highlight-section {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.blazing-text {
  background: linear-gradient(135deg, #DC2626 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.electric-text {
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.blazing-text::after,
.electric-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
  border-radius: 2px;
  animation: underlineGrow 2s ease-out 2s forwards;
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

/* Dynamic Description */
.hero-description-dynamic {
  margin-bottom: var(--space-xl);
}

.desc-animated {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #94A3B8;
  font-family: var(--font-accent);
  font-weight: 400;
}

.desc-segment {
  display: block;
  animation: descReveal 1s ease-out forwards;
  opacity: 0;
  transform: translateX(-20px);
}

.desc-segment:nth-child(1) { animation-delay: 1.2s; }
.desc-segment:nth-child(2) { animation-delay: 1.4s; }
.desc-segment:nth-child(3) { animation-delay: 1.6s; }

@keyframes descReveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Action Buttons */
.hero-action-zone {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
  animation: actionsReveal 1s ease-out 1.8s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes actionsReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.action-btn {
  position: relative;
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.action-btn.primary-flame {
  background: linear-gradient(135deg, #DC2626 0%, #F59E0B 50%, #FCBF49 100%);
  color: var(--white);
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4);
}

.action-btn.secondary-pulse {
  background: transparent;
  color: #E2E8F0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-energy-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.action-btn.primary-flame:hover .btn-energy-core {
  width: 200%;
  height: 200%;
}

.btn-content-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
  z-index: 2;
}

.btn-flame-trail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.action-btn.primary-flame:hover .btn-flame-trail {
  transform: translateX(100%);
}

.btn-wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.action-btn.secondary-pulse:hover .btn-wave-bg {
  opacity: 1;
}

.action-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.action-btn.primary-flame:hover {
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.6);
}

.action-btn.secondary-pulse:hover {
  border-color: rgba(220, 38, 38, 0.6);
  color: var(--white);
  box-shadow: 0 15px 45px rgba(220, 38, 38, 0.3);
}

/* Achievement Stats */
.hero-achievement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  animation: statsReveal 1s ease-out 2s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes statsReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.achievement-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
}

.achievement-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 15px 50px rgba(220, 38, 38, 0.2);
}

.achievement-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(220, 38, 38, 0.2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(220, 38, 38, 0.3);
  flex-shrink: 0;
}

.achievement-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.achievement-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #DC2626 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.achievement-label {
  font-size: 0.9rem;
  color: #94A3B8;
  font-weight: 600;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Technology Stack */
.hero-tech-showcase {
  animation: techReveal 1s ease-out 2.2s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes techReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tech-title {
  font-size: 0.9rem;
  color: #64748B;
  font-weight: 600;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  display: block;
}

.tech-element-grid {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.tech-element {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  position: relative;
  min-width: 100px;
}

.tech-element:hover {
  transform: translateY(-5px) scale(1.1);
  background: rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.tech-icon {
  font-size: 1.8rem;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}

.tech-element:hover .tech-icon {
  filter: grayscale(0);
}

.tech-name {
  font-size: 0.75rem;
  color: #64748B;
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.tech-element:hover .tech-name {
  color: #E2E8F0;
}

/* Revolutionary Visual Section */
.hero-visual-revolution {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: visualSlideIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  opacity: 0;
  transform: translateX(50px);
}

@keyframes visualSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.visual-3d-container {
  position: relative;
  width: 600px;
  height: 600px;
  perspective: 1200px;
}

.floating-automotive-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.auto-element {
  position: absolute;
  animation: autoElementFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(220, 38, 38, 0.3));
}

.element-gear {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.element-engine {
  top: 65%;
  right: 15%;
  animation-delay: 2.5s;
}

.element-wheel {
  bottom: 20%;
  left: 20%;
  animation-delay: 5s;
}

@keyframes autoElementFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
  25% { transform: translateY(-25px) rotate(5deg) scale(1.05); }
  50% { transform: translateY(-15px) rotate(-3deg) scale(0.95); }
  75% { transform: translateY(-30px) rotate(8deg) scale(1.02); }
}

.automotive-hub-central {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hubRotate 30s linear infinite;
  filter: drop-shadow(0 0 50px rgba(220, 38, 38, 0.4));
}

@keyframes hubRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Features Section */
.features-section {
  padding: var(--space-3xl) 0;
  background: var(--gray-100);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-purple);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
}

.feature-content {
  padding-top: var(--space-2xl);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.feature-description {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.feature-link {
  text-decoration: none;
  color: var(--primary-purple);
  font-weight: 500;
  position: relative;
  transition: var(--transition-normal);
}

.feature-link:hover {
  color: var(--primary-gold);
}

.feature-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.feature-link:hover::after {
  transform: scaleX(1);
}

/* About Section - Enhanced */
.about-section {
  background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.about-intro {
  margin-bottom: var(--space-2xl);
}

.about-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-lg);
  position: relative;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.about-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.about-mission {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.6;
  font-style: italic;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.feature-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.2);
}

.feature-item .feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(220, 38, 38, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
  border-color: rgba(220, 38, 38, 0.4);
  transform: scale(1.1);
}

.feature-content h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--space-xs);
}

.feature-content p {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 0.95rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--white) 0%, #FAFAFA 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(220, 38, 38, 0.1);
  box-shadow: var(--shadow-md);
}

.stat-highlight {
  text-align: center;
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.stat-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-highlight:hover::before {
  opacity: 1;
}

.stat-highlight:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-xs);
  position: relative;
  z-index: 2;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}

.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.about-animation {
  position: relative;
  filter: drop-shadow(0 20px 40px rgba(220, 38, 38, 0.2));
}

.about-achievements {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.achievement-badge {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(220, 38, 38, 0.1);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.achievement-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.achievement-badge:hover::before {
  transform: scaleY(1);
}

.achievement-badge:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.2);
}

.badge-icon {
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.badge-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
}

.badge-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(30, 64, 175, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.service-card {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(220, 38, 38, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
  border-color: rgba(220, 38, 38, 0.3);
}

.service-icon {
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  border-radius: var(--radius-2xl);
  border: 2px solid rgba(220, 38, 38, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
  border-color: rgba(220, 38, 38, 0.4);
  transform: scale(1.1);
}

.service-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.service-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.service-features span {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  color: var(--primary-red);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(220, 38, 38, 0.2);
  transition: all 0.3s ease;
}

.service-features span:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.services-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.contact-section .section-header {
  position: relative;
  z-index: 2;
}

.contact-section .section-title {
  color: var(--white);
}

.contact-section .section-badge {
  background: rgba(220, 38, 38, 0.2);
  color: #EF4444;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.contact-item:hover::before {
  transform: scaleY(1);
}

.contact-item:hover {
  transform: translateY(-5px) translateX(10px);
  background: rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 15px 50px rgba(220, 38, 38, 0.2);
}

.contact-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(220, 38, 38, 0.3);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: var(--gradient-primary);
  border-color: rgba(220, 38, 38, 0.5);
  transform: scale(1.1);
}

.contact-details h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.contact-details p {
  color: #94A3B8;
  line-height: 1.6;
  font-size: 1rem;
}

.contact-details a {
  color: #F59E0B;
  text-decoration: none;
  transition: var(--transition-normal);
  font-weight: 500;
}

.contact-details a:hover {
  color: #DC2626;
  text-decoration: underline;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--white);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94A3B8;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: rgba(245, 158, 11, 0.1);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* Footer */
.footer-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.footer-bg-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.3;
  z-index: 1;
}

.footer-content-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  text-align: center;
  z-index: 2;
}

.footer-logo-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: #94A3B8;
  text-decoration: none;
  font-family: var(--font-accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-link:hover::after {
  transform: scaleX(1);
}

.footer-link:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-social-icon {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 50%;
  padding: var(--space-xs);
}

.footer-social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  filter: drop-shadow(0 10px 20px rgba(220, 38, 38, 0.3));
}

.footer-tagline {
  margin-bottom: var(--space-xl);
}

.footer-funky-tagline {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: automotiveGradientShift 3s ease-in-out infinite;
}

.footer-back-to-top {
  background: var(--gradient-primary);
  border: none;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-xl);
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: 0 auto var(--space-xl);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
}

.footer-back-to-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s;
}

.footer-back-to-top:hover::before {
  left: 100%;
}

.footer-back-to-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.5);
}

.footer-copyright {
  color: #64748B;
  font-size: 0.9rem;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-accent);
}

/* Section Styles */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-badge {
  display: inline-block;
  background: rgba(220, 38, 38, 0.1);
  color: var(--primary-red);
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(220, 38, 38, 0.2);
  transition: all 0.3s ease;
}

.section-badge:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.section-title .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Additional Automotive Animations */
@keyframes autoGearRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes enginePulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.9;
  }
  50% { 
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes wheelSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes logoPulse {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.4;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

/* Automotive Ripple Effect */
.automotive-ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.6) 0%, rgba(245, 158, 11, 0.3) 50%, transparent 70%);
  transform: scale(0);
  animation: automotiveRipple 0.8s linear;
  pointer-events: none;
}

@keyframes automotiveRipple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Hero Stats Updated for Dharti Auto */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  animation: statsReveal 1s ease-out 2s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 15px 50px rgba(220, 38, 38, 0.2);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(220, 38, 38, 0.2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(220, 38, 38, 0.3);
  flex-shrink: 0;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #DC2626 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #94A3B8;
  font-weight: 600;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Tech Stack Updated */
.hero-tech-stack {
  animation: techReveal 1s ease-out 2.2s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.tech-label {
  font-size: 0.9rem;
  color: #64748B;
  font-weight: 600;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  display: block;
}

.tech-icons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.tech-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.8rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  position: relative;
}

.tech-icon:hover {
  transform: translateY(-5px) scale(1.1);
  background: rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.tech-icon::after {
  content: attr(data-tech);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: #64748B;
  font-family: var(--font-accent);
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.tech-icon:hover::after {
  opacity: 1;
}

/* Updated Gradient Text for Automotive Theme */
.gradient-text {
  background: linear-gradient(135deg, #DC2626 0%, #F59E0B 25%, #FCBF49 50%, #DC2626 75%, #F59E0B 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: automotiveGradientShift 3s ease-in-out infinite;
}

@keyframes automotiveGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Responsive Design - Enhanced */
@media (max-width: 900px) {
  .nav-glass-container {
    height: 70px;
    padding: 0 var(--space-md);
  }
  .brand-name {
    font-size: 1.3rem;
  }
  .brand-motto {
    font-size: 0.7rem;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }
  
  .hero-title-revolution {
    font-size: 3rem;
  }
  
  .hero-action-zone {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .hero-status-badges {
    justify-content: center;
  }
  
  .visual-3d-container {
    width: 350px;
    height: 350px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .footer-nav ul {
    gap: var(--space-lg);
  }
}

@media (max-width: 600px) {
  .nav-glass-container {
    flex-direction: column;
    height: auto;
    padding: var(--space-sm);
  }
  .logo-section {
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .hero-title-revolution {
    font-size: 2.5rem;
  }
  
  .desc-animated {
    font-size: 1.1rem;
  }
  
  .action-btn {
    padding: 16px 28px;
    font-size: 1rem;
  }
  
  .visual-3d-container {
    width: 280px;
    height: 280px;
  }
  
  .status-badge {
    padding: 10px 18px;
    font-size: 0.8rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .tech-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .contact-item {
    padding: var(--space-lg);
  }
  
  .service-card {
    padding: var(--space-lg);
  }
  
  .footer-nav ul {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .footer-social {
    gap: var(--space-md);
  }
}
