/* =========================
   HERO SLIDER
========================= */

.hero-slider {
  position: relative;
  height: 85vh;
  margin: 20px;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
}

.hero-slider .slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* SLIDE */
.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

/* IMAGE */
.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.05) 70%
  );
  z-index: 1;
}

/* CONTENT */
.slide-content {
  position: absolute;
  left: 80px;
  bottom: 120px;
  max-width: 520px;
  color: #fff;
  z-index: 2;
}

.slide-content h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
}

.slide-content p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 28px;
}

/* BUTTON */
.slide-content .btn {
  display: inline-block;
  padding: 14px 28px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
}

/* DOTS */
.slider-dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 3;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: #fff;
  transform: scale(1.6);
}