/* Hero Banner Slider - Vision & Mission */
.hero-banner-slider-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-banner-slider {
  width: 100%;
  min-height: 100vh;
}

.hero-banner-slide {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 100px;
}

.hero-banner-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 94, 88, 0.88) 0%, rgba(14, 154, 140, 0.82) 100%);
  z-index: 0;
}

.hero-banner-caption {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-banner-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  animation: heroFadeIn 0.8s ease-out;
}

.hero-banner-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  animation: heroFadeIn 0.8s ease-out 0.15s both;
}

.hero-banner-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 2rem;
  font-weight: 400;
  animation: heroFadeIn 0.8s ease-out 0.3s both;
}

.hero-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: heroFadeIn 0.8s ease-out 0.45s both;
}

.hero-banner-buttons .theme-button {
  margin: 0;
}

/* Swiper pagination */
.hero-banner-pagination {
  bottom: 48px !important;
  z-index: 2;
}

.hero-banner-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-banner-pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.25);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

/* Navigation arrows */
.hero-banner-prev,
.hero-banner-next {
  color: #fff;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.hero-banner-prev::after,
.hero-banner-next::after {
  font-size: 1.25rem;
  font-weight: 700;
}

.hero-banner-prev:hover,
.hero-banner-next:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
  color: #fff;
}

@media (max-width: 991px) {
  .hero-banner-slide {
    padding: 120px 16px 80px;
  }

  .hero-banner-prev,
  .hero-banner-next {
    width: 40px;
    height: 40px;
  }

  .hero-banner-prev::after,
  .hero-banner-next::after {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .hero-banner-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-banner-buttons .theme-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Active slide animations (when Swiper changes slide) */
.hero-banner-slider .swiper-slide-active .hero-banner-tag,
.hero-banner-slider .swiper-slide-active .hero-banner-title,
.hero-banner-slider .swiper-slide-active .hero-banner-text,
.hero-banner-slider .swiper-slide-active .hero-banner-buttons {
  animation: heroFadeIn 0.7s ease-out both;
}

.hero-banner-slider .swiper-slide-active .hero-banner-title {
  animation-delay: 0.1s;
}

.hero-banner-slider .swiper-slide-active .hero-banner-text {
  animation-delay: 0.2s;
}

.hero-banner-slider .swiper-slide-active .hero-banner-buttons {
  animation-delay: 0.35s;
}
