/* ===== HERO STATS SLIDER ===== */
.diskod-hero-slider {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dhs-content {
  transition: opacity 0.4s ease;
}
.dhs-content.dhs-hidden {
  opacity: 0;
}
.dhs-content.dhs-visible {
  opacity: 1;
}

.dhs-number {
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  letter-spacing: -1px;
}

.dhs-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 6px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.dhs-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
  margin-bottom: 10px;
}

.dhs-source {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-bottom: 18px;
}

.dhs-cta {
  display: inline-block;
  color: #fff !important;
  background: rgba(48,63,159,0.85);
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.3s ease, transform 0.2s ease;
  border: 1px solid rgba(255,255,255,0.3);
}
.dhs-cta:hover {
  background: rgba(48,63,159,1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Dots + Progress */
.dhs-nav {
  margin-top: 20px;
}
.dhs-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.dhs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dhs-dot.active {
  background: #fff;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(255,255,255,0.5);
}
.dhs-dot:hover {
  background: rgba(255,255,255,0.7);
}

.dhs-progress {
  width: 100%;
  max-width: 400px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.dhs-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.5), #fff);
  width: 0%;
  border-radius: 2px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .dhs-number {
    font-size: 3.5rem;
  }
  .dhs-title {
    font-size: 1.3rem;
  }
  .dhs-subtitle {
    font-size: 0.95rem;
  }
  .diskod-hero-slider {
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .dhs-number {
    font-size: 2.8rem;
  }
  .dhs-title {
    font-size: 1.15rem;
  }
  .dhs-subtitle {
    font-size: 0.88rem;
  }
  .dhs-cta {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
  .diskod-hero-slider {
    min-height: 220px;
  }
  .dhs-source {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .dhs-number {
    font-size: 2.2rem;
  }
  .dhs-title {
    font-size: 1rem;
  }
  .dhs-subtitle {
    font-size: 0.82rem;
    margin-bottom: 8px;
  }
  .dhs-cta {
    padding: 7px 15px;
    font-size: 0.8rem;
  }
  .diskod-hero-slider {
    min-height: 200px;
  }
}
