.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

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

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero image 2.png');
  background-size: cover;
  background-position: 50% center;
  background-repeat: no-repeat;
  background-color: #0a0a1e;
  will-change: transform;
}

@media (min-width: 1441px) {
  .hero-bg-image { background-size: cover; background-position: 50% center; }
}
@media (max-width: 1440px) {
  .hero-bg-image { background-position: 45% center; }
}
@media (max-width: 1024px) {
  .hero-bg-image { background-position: 42% center; }
}
@media (max-width: 768px) {
  .hero-bg-image { background-position: 40% center; }
}
@media (max-width: 576px) {
  .hero-bg-image { background-position: 38% center; }
}
@media (max-width: 480px) {
  .hero-bg-image { background-position: 36% center; }
}
@media (max-width: 390px) {
  .hero-bg-image { background-position: 35% center; }
}
@media (max-width: 360px) {
  .hero-bg-image { background-position: 33% center; }
}
@media (max-width: 320px) {
  .hero-bg-image { background-position: 30% center; }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,30,0.92) 0%, rgba(10,10,30,0.3) 35%, rgba(10,10,30,0.5) 60%, rgba(10,10,30,0.88) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(200,168,78,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(200,168,78,0.06) 0%, transparent 50%);
  z-index: 2;
  animation: overlayPulse 8s ease-in-out infinite alternate;
}

@keyframes overlayPulse {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: heroParticleFloat 8s ease-in-out infinite;
}

@keyframes heroParticleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-section .container {
  position: relative;
  z-index: 4;
  width: 100%;
}

.hero-content {
  max-width: 720px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  margin: 16px 0 24px;
  line-height: 1.1;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.7;
  text-shadow: 0 1px 20px rgba(0,0,0,0.3);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.hero-stat {
  text-align: center;
  min-width: unset;
  flex: unset;
}

.hero-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 4;
}

.scroll-indicator {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--primary), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Light sweep overlay on the background */
.hero-light-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 25%,
    rgba(255,255,255,0.03) 40%,
    rgba(255,255,255,0.06) 45%,
    rgba(255,255,255,0.03) 50%,
    transparent 65%
  );
  background-size: 300% 100%;
  animation: heroLightSweep 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: overlay;
}

@keyframes heroLightSweep {
  0% { background-position: 300% 0; }
  100% { background-position: -300% 0; }
}

@media (max-width: 768px) {
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat { flex: 1; min-width: 80px; }
  .stats-grid { grid-template-columns: 1fr 1fr; margin-top: 0; padding-top: 60px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .vehicle-icons-grid { grid-template-columns: repeat(3, 1fr); }
  .vehicle-types-grid { grid-template-columns: 1fr; }
  .gallery-expand:nth-child(1),
  .gallery-expand:nth-child(4) {
    grid-column: span 1;
  }
  .hero-actions { margin-bottom: 32px; }
  .hero-stats { gap: 16px; }
}

@media (max-width: 480px) {
  .vehicle-icons-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stat { min-width: 70px; }
  .hero-content .section-label { font-size: 0.75rem; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p { font-size: 0.9rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stats-grid .card { padding: 20px 16px; }
  .counter-value { font-size: clamp(1.4rem, 6vw, 2rem); }
  .stat-label { font-size: clamp(0.7rem, 3vw, 0.85rem); }
  .vehicle-icon-card { padding: 20px 10px; }
  .vehicle-icon-card .v-icon { font-size: 1.8rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

@media (max-width: 420px) {
  .stats-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .counter-value { font-size: clamp(1.6rem, 7vw, 2rem); }
  .stat-label { font-size: clamp(0.75rem, 3.5vw, 0.85rem); }
}

@media (max-width: 360px) {
  .hero-section { min-height: 100dvh; padding-top: 60px; }
  .hero-stat { min-width: 60px; }
  .hero-stat h3 { font-size: 1.1rem; }
  .hero-stat p { font-size: 0.65rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 12px; max-width: 280px; margin-left: auto; margin-right: auto; }
  .stats-grid .card { padding: 16px; }
  .counter-value { font-size: clamp(1.4rem, 8vw, 1.8rem); }
  .stat-label { font-size: clamp(0.7rem, 3.5vw, 0.8rem); }
  .vehicle-icons-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .vehicle-icon-card { padding: 16px 8px; }
}

.floating-vehicles {
  padding: 80px 0;
  position: relative;
}

.vehicle-icons-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.vehicle-icon-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 16px;
  text-align: center;
  transition: all var(--transition-slow);
  cursor: pointer;
}

.vehicle-icon-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.v-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  transition: transform var(--transition);
}

.vehicle-icon-card:hover .v-icon {
  transform: scale(1.2);
}

.vehicle-icon-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.bg-alt {
  background: var(--bg-alt);
}

.align-center {
  align-items: center;
}

.order-1 { order: 1; }
.order-2 { order: 2; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -60px;
  position: relative;
  z-index: 3;
}

.stats-grid .card {
  padding: 40px 24px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--border), var(--primary));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.3;
  font-family: var(--font-heading);
  margin-bottom: 16px;
}

.vehicle-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-expand:nth-child(1),
.gallery-expand:nth-child(4) {
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .vehicle-icons-grid { grid-template-columns: repeat(3, 1fr); }
  .vehicle-types-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-stats { gap: 24px; }
  .hero-stat { flex: 1; min-width: 80px; }
  .stats-grid { grid-template-columns: 1fr 1fr; margin-top: 0; padding-top: 60px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .vehicle-icons-grid { grid-template-columns: repeat(3, 1fr); }
  .vehicle-types-grid { grid-template-columns: 1fr; }
  .gallery-expand:nth-child(1),
  .gallery-expand:nth-child(4) {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .vehicle-icons-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ===== HERO STATS RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-stats { gap: 32px; }
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .hero-stat {
    min-width: unset;
    flex: unset;
  }
}

@media (max-width: 576px) {
  .hero-stats { gap: 24px; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
}

@media (max-width: 360px) {
  .hero-stats { gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-image {
    animation: none;
  }
  .hero-overlay {
    animation: none;
  }
  .hero-light-sweep {
    animation: none;
  }
  .hero-particle {
    animation: none;
    display: none;
  }
  .scroll-indicator {
    animation: none;
  }
}
