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

.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
}

.hero__slider {
  position: relative;
  height: 600px;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.hero__slide.active {
  opacity: 1;
  z-index: 2;
}

.hero__slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Unique gradient overlays per slide */
.hero__slide:nth-child(1) .hero__slide-bg::before {
  background: linear-gradient(135deg, rgba(10,14,26,0.95) 0%, rgba(10,14,26,0.7) 50%, rgba(10,14,26,0.3) 100%);
}

.hero__slide:nth-child(2) .hero__slide-bg::before {
  background: linear-gradient(135deg, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.7) 50%, rgba(10,14,26,0.3) 100%);
}

.hero__slide:nth-child(3) .hero__slide-bg::before {
  background: linear-gradient(135deg, rgba(10,14,26,0.95) 0%, rgba(26,115,232,0.2) 50%, rgba(10,14,26,0.4) 100%);
}

.hero__slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken-burns 12s ease-in-out infinite alternate;
}

@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 18px;
  background: rgba(255, 77, 0, 0.15);
  border: 1px solid rgba(255, 77, 0, 0.3);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(8px);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-5);
  letter-spacing: -0.03em;
}

.hero__title span {
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
}

.hero__features {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  font-weight: var(--fw-medium);
}

.hero__feature svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

.hero__cta {
  display: flex;
  gap: var(--space-4);
}

/* Floating discount badge */
.hero__floating-badge {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.hero__discount-circle {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  background: var(--gradient-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(255, 77, 0, 0.4);
  animation: float 3s ease-in-out infinite;
}

.hero__discount-circle .amount {
  font-size: var(--text-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: 1;
  font-family: var(--font-heading);
}

.hero__discount-circle .label {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes float {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 12px)); }
}

/* ── Slider Navigation ── */
.hero__nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.hero__dots {
  display: flex;
  gap: var(--space-2);
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.hero__dot.active {
  background: var(--color-accent);
  width: 32px;
  border-radius: var(--radius-pill);
}

.hero__arrow {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero__arrow:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.08);
}

.hero__arrow svg {
  width: 20px;
  height: 20px;
}

/* Decorative elements */
.hero__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: var(--radius-full);
  filter: blur(120px);
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.hero__glow--orange {
  background: var(--color-accent);
  right: 10%;
  top: 20%;
}

.hero__glow--blue {
  background: var(--color-secondary);
  left: 5%;
  bottom: 10%;
  opacity: 0.15;
}
