/* ==========================================================================
   GuruGhar Estate - Hero Slider (Floating Luxury Style)
   ========================================================================== */

.hero-section {
    /* Offset for fixed header */
    padding-top: 158px; 
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    background-color: #ffffff;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
}

/* Swiper Base Dimensions - Autofit scaling */
.heroSwiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

/* Background Image perfectly fitted (Flipkart Style) */
.swiper-slide img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}

/* ==========================================================================
   PROFESSIONAL NAVIGATION (Lines & Modern Buttons)
   ========================================================================== */
/* Sleek Line Pagination */
.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.4;
    width: 35px;
    height: 3px;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
    background: #C8A96A; /* Gold */
    opacity: 1;
    width: 60px; /* Expands to show active status prominently */
    box-shadow: 0 0 10px rgba(200, 169, 106, 0.4);
}

/* High-end Square Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    background: rgba(30, 26, 34, 0.5); /* Deep translucent charcoal */
    width: 48px;
    height: 48px;
    border-radius: 4px; /* Professional square edge */
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #C8A96A;
    border-color: #C8A96A;
    color: #ffffff;
    transform: scale(1.05); /* Slight pop effect */
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 15px; /* Much sharper, cleaner indicator */
    font-weight: 700;
}


/* ==========================================================================
   MOBILE RESPONSIVENESS (Proportional Scaling)
   ========================================================================== */

/* Tablets / Small Desktops */
@media screen and (max-width: 1200px) {
    /* Auto fit handles height naturally */
}

@media screen and (max-width: 1050px) {
    .hero-section {
        padding-top: 100px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
        padding-left: 0; 
        padding-right: 0; 
        padding-bottom: 0;
    }

    .hero-wrapper {
        border-radius: 0; /* Smoother curve scale for mobile */
    }

    .heroSwiper {
        height: auto;
        min-height: auto;
    }

    /* Modern phones still show dots, but keep arrows hidden for swiping */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    /* Make dots slightly smaller on mobile */
    .swiper-pagination-bullet {
        width: 20px;
        height: 3px;
    }
    .swiper-pagination-bullet-active {
        width: 40px;
    }
}
