.hero-section {
  padding: 80px 0;
  margin-top: 60px;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
  min-height: auto;
}

.hero-section .container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal-black);
  letter-spacing: -0.01em;
  margin: 0;
}

/* Hero Description Carousel */
.hero-description-carousel {
  position: relative;
  min-height: 80px;
  overflow: hidden;
}

.hero-description {
  font-family: var(--font-body);
  color: var(--gray-muted);
  font-size: var(--font-size-body);
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.hero-description.active {
  opacity: 1;
  position: relative;
  transform: translateY(0);
  pointer-events: auto;
}

/* Hero Dots */
.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s ease;
}

.hero-dots .dot.active {
  background: var(--primary);
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: var(--primary-gradient);
  color: var(--bg-light);
  font-family: var(--font-heading);
  font-size: var(--font-size-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  transition: var(--transition-fast);
  border: none;
  cursor: pointer;
}

.hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(219, 103, 0, 0.3);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal-black);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: var(--font-size-small);
  color: var(--gray-muted);
}

/* Hero Right - Image Carousel */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-images-carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 10;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-image.active {
  opacity: 1;
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-wrapper {
    gap: 2rem;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-images-carousel {
    max-width: 480px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-section {
    padding: 24px 0 40px;
    margin-top: 0;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .hero-left {
    align-items: center;
    gap: 1rem;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-description-carousel {
    min-height: 70px;
  }

  .hero-description {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-dots {
    justify-content: center;
    gap: 0.4rem;
  }

  .hero-dots .dot {
    width: 5px;
    height: 5px;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
    margin-top: 0.25rem;
  }

  .hero-actions .btn-primary {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }

  .hero-right {
    order: -1;
    width: 100vw;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .hero-images-carousel {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 20px 0 32px;
  }

  .hero-wrapper {
    gap: 1.25rem;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-description-carousel {
    min-height: 75px;
  }

  .hero-description {
    font-size: 14px;
    max-width: 300px;
  }

  .hero-actions {
    width: 100%;
    max-width: none;
    padding: 0 0.5rem;
  }

  .hero-actions .btn-primary {
    width: 100%;
    max-width: none;
    padding: 12px 20px;
    font-size: 15px;
  }

  .hero-stats {
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-label {
    font-size: 11px;
  }

  .hero-right {
    width: 100vw;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .hero-images-carousel {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
}
