.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: var(--header-height);
}

@media (max-width: 768px) {
  .hero-slider {
    margin-top: var(--header-height-mobile);
    min-height: 500px;
  }
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow) ease, visibility var(--transition-slow) ease;
}

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

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 79, 114, 0.9) 0%,
    rgba(14, 47, 68, 0.8) 50%,
    rgba(27, 79, 114, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-4);
}

.hero-inner {
  max-width: 900px;
  width: 100%;
  text-align: center;
  animation: slideUp var(--transition-slow) ease-out;
}

.hero-slide.active .hero-inner {
  animation: slideUp var(--transition-slow) ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-white);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: var(--text-5xl);
  font-weight: var(--font-extrabold);
  line-height: var(--leading-tight);
  color: var(--color-white);
  margin-bottom: var(--space-6);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: var(--text-3xl);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: var(--text-4xl);
  }
}

.hero-subtitle {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: var(--text-lg);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
  z-index: 10;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
  text-decoration: none;
}

.hero-nav:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.hero-nav svg {
  width: 24px;
  height: 24px;
}

.hero-prev {
  left: var(--space-6);
}

.hero-next {
  right: var(--space-6);
}

@media (max-width: 768px) {
  .hero-prev {
    left: var(--space-3);
    width: 44px;
    height: 44px;
  }

  .hero-next {
    right: var(--space-3);
    width: 44px;
    height: 44px;
  }
}

.hero-dots {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  transition: all var(--transition-fast);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.hero-dot.active {
  background: var(--color-white);
  transform: scale(1.3);
}

.hero-dot:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-xs);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  justify-content: center;
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-1);
}

@media (max-width: 768px) {
  .stat-number {
    font-size: var(--text-3xl);
  }
}

.stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
}

.hero-slide:nth-child(1) .hero-slide-content {
  animation-delay: 0ms;
}

.hero-slide:nth-child(2) .hero-slide-content {
  animation-delay: 100ms;
}

.hero-slide:nth-child(3) .hero-slide-content {
  animation-delay: 200ms;
}

.hero-slide:nth-child(4) .hero-slide-content {
  animation-delay: 300ms;
}

.hero-slide:nth-child(5) .hero-slide-content {
  animation-delay: 400ms;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-nav,
  .hero-dot,
  .hero-inner,
  .hero-scroll-indicator {
    animation: none !important;
    transition: none !important;
  }

  .hero-slide {
    opacity: 0;
    visibility: hidden;
  }

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