/* Hero Section Styles */
.hero-slider {
    position: relative;
    overflow: hidden;
    background-color: var(--light-gray);
}

.hero-slide {
    position: relative;
}

.hero-overlay {
    display: none;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-img-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-overlay {
    display: none;
}

/* Simple Modern Hero Pagination */
.hero-slider .swiper-pagination {
    bottom: 24px;
    z-index: 10;
}

.hero-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.hero-slider .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.hero-slider .swiper-pagination-bullet-active {
    background: white;
    width: 24px;
    border-radius: 4px;
    transform: scale(1);
}

/* Mobile responsive */
@media (max-width: 640px) {
    .hero-slider .swiper-pagination {
        bottom: 16px;
    }

    .hero-slider .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }

    .hero-slider .swiper-pagination-bullet-active {
        width: 18px;
    }
}