@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* { box-sizing: border-box; }

body { font-family: 'Inter', sans-serif; scroll-behavior: smooth; }

.hero-bg {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a0a00 40%, #0f0f0f 100%);
}

/* Animated gradient orbs in hero */
.hero-bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
  top: -100px;
  right: 10%;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,0.10) 0%, transparent 70%);
  bottom: 10%;
  left: 5%;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes pulse-slow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.animate-pulse-slow {
  animation: pulse-slow 3s ease-in-out infinite;
}

/* Car card image hover */
.car-card img {
  transition: transform 0.5s ease;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.car-card:hover img {
  filter: drop-shadow(0 20px 40px rgba(255,107,0,0.2));
}

/* Smooth scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111827; }
::-webkit-scrollbar-thumb { background: #FF6B00; border-radius: 3px; }

/* Table row hover */
tbody tr { transition: background 0.2s; }

/* Step card number hover pulse */
.step-card:hover .text-primary\/30 {
  color: rgba(255, 107, 0, 0.6);
  transition: color 0.3s;
}

/* Active nav state */
nav a.active { color: #FF6B00; }

/* WhatsApp button pulse */
a[href*="whatsapp"] {
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}
