
/* ===== Hero Swiper Slider Styles ===== */
.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.heroSwiper {
  width: 100%;
  height: 100vh;
  position: relative;
}

.heroSwiper .swiper-slide {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroSwiper .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.heroSwiper .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroSwiper .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30, 30, 30, 0.2), rgba(30, 30, 30, 0.2), rgba(30, 30, 30, 0.2));
}

.heroSwiper .hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Swiper Navigation Buttons */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  color: white;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
  opacity: 1;
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .heroSwiper .swiper-button-next::after,
  .heroSwiper .swiper-button-prev::after {
    font-size: 1.5rem;
  }
}

/* Swiper Pagination */
.heroSwiper .swiper-pagination {
  bottom: 4rem !important;
  z-index: 20;
}

.heroSwiper .swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-primary);
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .heroSwiper .swiper-pagination {
    bottom: 2rem !important;
  }
  
  .heroSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  
  .heroSwiper .swiper-pagination-bullet-active {
    width: 24px;
  }
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  padding: 0 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.hero-cta .btn {
  padding: 0.75rem 1.5rem;
}

@media (min-width: 768px) {
  .hero-cta .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-cta .btn {
    font-size: 1.125rem;
  }
}

/* Fade-in animations for hero content */
.heroSwiper .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.heroSwiper .swiper-slide-active .fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.heroSwiper .swiper-slide-active .hero-badge {
  transition-delay: 0.2s;
}

.heroSwiper .swiper-slide-active .hero-title {
  transition-delay: 0.4s;
}

.heroSwiper .swiper-slide-active .hero-subtitle {
  transition-delay: 0.6s;
}

.heroSwiper .swiper-slide-active .hero-cta {
  transition-delay: 0.8s;
}

/* Scroll indicator positioning for slider */
.hero-slider .scroll-indicator {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
