/* ============================================
   HERO SECTION STYLES
   ============================================ */

.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-slide {
  display: none;
  position: relative;
  min-height: 550px;
  padding: 60px 0;
  animation: fadeSlide 0.8s ease-in-out;
}

.hero-slide.active {
  display: flex;
  align-items: center;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-slide .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(230,57,70,0.1);
  border: 1px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--light);
  margin-bottom: 20px;
  animation: slideInLeft 0.8s ease-out;
}

.hero-title span {
  color: var(--primary);
  display: inline-block;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--light-3);
  margin-bottom: 32px;
  max-width: 500px;
  animation: slideInLeft 1s ease-out;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: slideInLeft 1.2s ease-out;
}

.hero-btns .btn {
  padding: 14px 32px;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-btns .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(230,57,70,0.4);
}

.hero-btns .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230,57,70,0.6);
}

.hero-btns .btn-outline {
  background: transparent;
  color: var(--light-2);
  border: 2px solid var(--light-2);
}

.hero-btns .btn-outline:hover {
  background: var(--light-2);
  color: var(--white);
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  transition: var(--transition);
}

.hero-slide:hover .hero-image img {
  transform: scale(1.05) rotate(-2deg);
}

/* HERO CONTROLS */
.hero-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dark-4);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.hero-dot:hover {
  background: var(--primary-light);
  transform: scale(1.2);
}

.hero-dot.active {
  background: var(--primary);
  border-color: var(--light-2);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(230,57,70,0.6);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 2px solid var(--dark-4);
  border-radius: 50%;
  color: var(--light-2);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: var(--shadow);
}

.hero-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(230,57,70,0.5);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

/* RESPONSIVE HERO */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 42px;
  }
  
  .hero-content {
    max-width: 460px;
  }
  
  .hero-image {
    width: 44%;
  }
  
  .hero-slide {
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .hero-image {
    display: none;
  }
  
  .hero-slide {
    min-height: 380px;
    justify-content: center;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 50px 0;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-desc {
    font-size: 15px;
  }
  
  .hero-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-slide {
    min-height: 340px;
  }
  
  .hero-tag {
    font-size: 11px;
    padding: 5px 12px;
  }
  
  .hero-title {
    font-size: 30px;
  }
  
  .hero-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .hero-btns .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-controls {
    bottom: 14px;
  }
}
