.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: start;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/hero.jpg") no-repeat center center/cover;
  filter: brightness(0.4);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  margin-top: 7.5rem;
  text-align: center;
  padding: 0 20px;
  max-width: 1200px;
}

.hero-content img {
  width: 150px;
  margin-bottom: 20px;
  position: absolute;
  opacity: 0;
  will-change: transform opacity;
}

.float-1 {
  top: -75px;
  left: -50px;
  z-index: -1;
}

.float-2 {
  bottom: -110px;
  left: -8px;
}

.float-3 {
  top: -75px;
  right: -20px;
  z-index: -1;
}

.float-4 {
  bottom: -110px;
  right: 10px;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  background: linear-gradient(to bottom, #ffffff, #898989);
  background-clip: text;
  color: transparent;
  font-family: var(--font-modern-negra);
  line-height: 1;
  opacity: 0;
}

.hero-subtitle {
  font-family: var(--font-modern-negra);
  color: #e7d393;
  padding-top: 0;
  margin-bottom: 1rem;
  line-height: 1;
  font-size: 3.75rem;
  opacity: 0;
  transform: translateY(50px);
}

.scroll-indicator {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  opacity: 0.6;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ========================================
   FLEET SECTION
   ======================================== */

#fleet {
  padding: 120px 20px;
  background: var(--bg-color);
}

.fleet-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
}

.fleet-title {
  margin-bottom: 20px;
  color: var(--text-color);
}

.fleet-subtitle {
  font-size: 1.25rem;
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Car Cards with Stagger Animation */
.car-card {
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.4s var(--ease-out-expo);
}

.car-card:hover {
  transform: translateY(-10px) !important;
}

.car-card img {
  transition: transform 0.6s var(--ease-out-expo);
}

.car-card:hover img {
  transform: scale(1.05);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  .hero-bg {
    height: 100%;
    background-attachment: scroll;
  }

  .scroll-indicator {
    display: none;
  }

  #fleet {
    padding: 60px 20px;
  }

  .fleet-header {
    margin-bottom: 40px;
  }
}
