/* ==========================================================================
   CLEAN IMAGE-ONLY SLIDER COMPONENT (Full Image / Zero Cropping)
   ========================================================================== */

.hero-section {
  position: relative;
  width: 100%;
  background: #07172c;
  overflow: hidden;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2083 / 755;
  background: #07172c;
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s ease;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Pause/Play Button (Top Right corner) */
.hero-pause-btn {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 10;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-pause-btn:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: #ffffff;
  transform: scale(1.08);
}

/* Left & Right Circular Arrow Buttons */
.slider-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  transition: all var(--transition-fast);
}

.slider-arrow-btn:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.slider-arrow-btn.prev-btn {
  left: 16px;
}

.slider-arrow-btn.next-btn {
  right: 16px;
}

/* Bottom Indicators */
.hero-dots-nav {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-dot.active {
  width: 22px;
  border-radius: 6px;
  background: #fbbf24;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 768px) {
  .slider-arrow-btn {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  }

  .slider-arrow-btn.prev-btn {
    left: 6px;
  }

  .slider-arrow-btn.next-btn {
    right: 6px;
  }

  .hero-pause-btn {
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
    background: rgba(15, 23, 42, 0.75);
  }

  .hero-dots-nav {
    bottom: 6px;
    padding: 3px 8px;
    gap: 5px;
  }

  .hero-dot {
    width: 6px;
    height: 6px;
  }

  .hero-dot.active {
    width: 14px;
  }
}

@media (max-width: 480px) {
  .slider-arrow-btn {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  .slider-arrow-btn.prev-btn { left: 4px; }
  .slider-arrow-btn.next-btn { right: 4px; }

  .hero-pause-btn {
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    font-size: 0.6rem;
  }
}


