/* ==========================================
   HERO CAROUSEL STYLES
========================================== */
.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-swiper .site-blocks-cover {
    height: 100%;
    min-height: 100vh;
}

/* Hero Pagination Dots - Grey/White with Dash Active State */
.hero-pagination {
    bottom: 40px !important;
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-pagination .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.9);
    width: 18px;
    height: 10px;
    border-radius: 5px;
    border: none;
}

.hero-pagination .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-carousel-wrapper {
        min-height: 500px;
    }

    .hero-swiper .site-blocks-cover {
        min-height: 500px;
    }

    .hero-pagination {
        bottom: 20px !important;
    }
}