/* ============================================
   EMIX Hero Slider Section
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 1000px;
  overflow: hidden;
  background: var(--color-green-darkest);
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
}

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

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,58,42,0.92) 0%, rgba(26,58,42,0.75) 50%, rgba(26,58,42,0.88) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-gold-light);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 8s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { left: 25%; animation-delay: 1.5s; animation-duration: 9s; }
.particle:nth-child(3) { left: 40%; animation-delay: 0.8s; animation-duration: 6s; }
.particle:nth-child(4) { left: 55%; animation-delay: 2.2s; animation-duration: 8s; }
.particle:nth-child(5) { left: 70%; animation-delay: 0.4s; animation-duration: 10s; }
.particle:nth-child(6) { left: 85%; animation-delay: 1.8s; animation-duration: 7.5s; }
.particle:nth-child(7) { left: 15%; animation-delay: 3s; animation-duration: 8.5s; }
.particle:nth-child(8) { left: 60%; animation-delay: 2.5s; animation-duration: 6.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 9.5s; }
.particle:nth-child(10) { left: 35%; animation-delay: 3.5s; animation-duration: 7s; }

@keyframes particle-float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
  width: 100%;
}

.hero-content-inner {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: rgba(196, 154, 42, 0.15);
  border: 1px solid rgba(196, 154, 42, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-gold-light);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in-up 0.8s 0.3s forwards;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: var(--font-extrabold);
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: var(--space-6);
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 0.8s 0.5s forwards;
}

.hero-title .gold-text {
  color: var(--color-gold-light);
  position: relative;
  display: inline-block;
}

.hero-title .gold-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transform-origin: right;
  animation: line-expand 0.8s 1.2s forwards;
}

@keyframes line-expand {
  to { transform: scaleX(1); }
}

.hero-description {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-8);
  max-width: 580px;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 0.8s 0.9s forwards;
}

.hero-stats {
  display: flex;
  gap: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 0.8s 1.1s forwards;
}

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

.hero-stat-number {
  font-family: var(--font-english);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

/* Hero Decorative Elements */
.hero-deco {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-deco-circle {
  width: 500px;
  height: 500px;
  border: 1px solid rgba(196, 154, 42, 0.1);
  border-radius: 50%;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  animation: rotate-slow 60s linear infinite;
}

.hero-deco-circle::after {
  content: '';
  position: absolute;
  top: -3px;
  right: 50%;
  width: 6px;
  height: 6px;
  background: var(--color-gold-light);
  border-radius: 50%;
}

.hero-deco-dots {
  bottom: 10%;
  left: 5%;
  display: grid;
  grid-template-columns: repeat(4, 8px);
  gap: 12px;
}

.hero-deco-dots span {
  width: 4px;
  height: 4px;
  background: rgba(196, 154, 42, 0.2);
  border-radius: 50%;
}

/* Slider Controls */
.hero-slider-controls {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-3);
  z-index: 5;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
  background: transparent;
}

.slider-dot.active {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: scale(1.2);
}

.slider-dot:hover {
  border-color: var(--color-gold-light);
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  right: var(--space-8);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
  animation: float 3s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold-light), transparent);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero { min-height: 600px; }
  .hero-title { font-size: var(--text-5xl); }
  .hero-stats { gap: var(--space-6); }
}

@media (max-width: 768px) {
  .hero { min-height: 550px; }
  .hero-title { font-size: var(--text-4xl); }
  .hero-description { font-size: var(--text-base); }
  .hero-stats { flex-wrap: wrap; gap: var(--space-6); }
  .hero-stat-number { font-size: var(--text-2xl); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-deco-circle { display: none; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: var(--text-3xl); }
  .hero-stats { gap: var(--space-4); }
}
