.slider-section {
  width: 100%;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 82vh;
  min-height: 620px;
  max-height: 900px;
  background: #031a10;
}

.slides-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  height: 100%;
  margin: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}

.dot.is-active {
  background: #ffffff;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 64vh;
    min-height: 420px;
    max-height: 620px;
  }

  .slider-dots {
    bottom: 14px;
  }
}
