/* ── PUBLIC BANNER CAROUSEL ── */
.public-banner-carousel {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #0a1e40;
  overflow: hidden;
  display: none; /* Hidden by default, shown if banners exist */
}

.public-banner-carousel.swiper {
  width: 100%;
  height: 100%;
}

.public-banner-carousel .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.public-banner-carousel .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.public-banner-carousel .banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.public-banner-carousel .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: 1;
}

.public-banner-carousel .banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 40px;
}

.public-banner-carousel .banner-title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.public-banner-carousel .banner-subtitle {
  font-size: clamp(0.875rem, 2vw, 1.25rem);
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.public-banner-carousel .banner-cta {
  display: inline-block;
  background: #E63946; /* Pulse accent color */
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.public-banner-carousel .banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
  background: #f14c5a;
}

/* Swiper Navigation */
.public-banner-carousel .swiper-button-next,
.public-banner-carousel .swiper-button-prev {
  color: white;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0;
}

@media (min-width: 1025px) {
  .public-banner-carousel:hover .swiper-button-next,
  .public-banner-carousel:hover .swiper-button-prev {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .public-banner-carousel .swiper-button-next,
  .public-banner-carousel .swiper-button-prev {
    opacity: 1;
    width: 40px;
    height: 40px;
  }
}

.public-banner-carousel .swiper-button-next:after,
.public-banner-carousel .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.public-banner-carousel .swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.public-banner-carousel .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
  background: #E63946;
}
