/* ========================================================
   HERO SECTION - FULLY RESPONSIVE
   ======================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 3.5rem 4rem;
    overflow: hidden;
}

/* === CAROUSEL === */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

/* === OVERLAY === */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.4) 60%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

/* === HERO CONTENT === */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: #ffffff;
}

/* New: Max-width container (centered on ultra-wide, padded on large) */
.hero-content-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Keeps everything left-aligned */
}

/* Text content block (title, desc, CTA) */
.hero-text-content {
    max-width: 650px;
    width: 100%;
}

/* === HERO BADGE === */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    max-width: 650px;
    /* Aligns with text block */
}

.hero-badge:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.badge-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-right: -12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.avatar:last-child {
    margin-right: 0;
}

.hero-badge:hover .avatar {
    transform: translateX(2px);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
}

/* === HERO TITLE & DESCRIPTION === */
.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 550px;
}

/* === CTA BUTTON === */
.cta-button-wrapper {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.cta-button {
    padding: 1.125rem 3.5rem 1.125rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    background-color: #F8BA00;
    color: #000000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(253, 185, 19, 0.35);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background-color: #e5a610;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(253, 185, 19, 0.45);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-arrow-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #F8BA00;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(253, 185, 19, 0.35);
    margin-left: -10px;
    position: relative;
    z-index: 2;
}

.cta-arrow-btn:hover {
    background-color: #e5a610;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(253, 185, 19, 0.45);
}

.cta-arrow-btn:active {
    transform: translateY(0);
}

.arrow-icon {
    transition: transform 0.3s ease;
    color: #000000;
}

.cta-arrow-btn:hover .arrow-icon {
    transform: translateX(3px);
}

.cta-button-wrapper:hover .cta-button,
.cta-button-wrapper:hover .cta-arrow-btn {
    background-color: #e5a610;
}

/* === CAROUSEL INDICATORS === */
.carousel-indicators {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.75rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.indicator.active {
    background-color: #FDB913;
    width: 28px;
    border-radius: 5px;
}

/* ========================================================
   RESPONSIVE BREAKPOINTS
   ======================================================== */

@media (min-width: 1580px) {
    .hero-section {
        padding: 0 1rem 5rem;
    }

    .hero-content-container {
        padding: 0 4rem;
        /* Extra breathing room on ultra-wide */
    }

    .hero-text-content {
        max-width: 700px;
    }

    .hero-title {
        font-size: 5rem;
        margin-bottom: 1.75rem;
    }

    .hero-description {
        font-size: 1.25rem;
        max-width: 600px;
    }

    .carousel-indicators {
        bottom: 5rem;
    }
}

@media (max-width: 1579px) 
/* {
    .hero-section {
        padding: 0 4rem 4rem;    }

    .hero-title {
        font-size: 4.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
} */
{
.hero-section {
    padding: 0 1rem 5rem;
}

.hero-content-container {
    padding: 0 4rem;
    /* Extra breathing room on ultra-wide */
}

.hero-text-content {
    max-width: 700px;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1.75rem;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 600px;
}

.carousel-indicators {
    bottom: 5rem;
}
}

@media (max-width: 1420px) 
   
    {
            .hero-section {
                padding: 0 1rem 5rem;
                padding-top: 200px;

            }
    
            .hero-content-container {
                padding: 0 3.5rem;
                /* Extra breathing room on ultra-wide */
            }
    
            .hero-text-content {
                max-width: 700px;
            }
    
            .hero-title {
                font-size: 4rem;
                margin-bottom: 1.2rem;
            }
    
            .hero-description {
                font-size: 1.2rem;
                max-width: 600px;
            }
    
            .carousel-indicators {
                bottom: 5rem;
            }
        }

@media (max-width: 1199px) 
    {
            .hero-section {
                padding: 0 1rem 5rem;
                padding-top: 150px;
    
            }
    
            .hero-content-container {
                padding: 0 3.5rem;
                /* Extra breathing room on ultra-wide */
            }
    
            .hero-text-content {
                max-width: 700px;
            }
    
            .hero-title {
                font-size: 4rem;
                margin-bottom: 1.2rem;
            }
    
            .hero-description {
                font-size: 1.2rem;
                max-width: 600px;
            }
    
            .carousel-indicators {
                bottom: 5rem;
            }
        }

/* Tablets & Mobile — CENTERED */
@media (max-width: 1115px) {
    .hero-section {
        padding: 0 2.5rem 3rem;
        align-items: center;
        justify-content: center;
    }

    .hero-content-container {
        padding: 0;
        align-items: center;
        text-align: center;
    }

    .hero-text-content {
        max-width: 700px;
        text-align: center;
    }

    .hero-badge {

        margin: 0 auto 2rem auto;
        margin-top: 50px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-description {
        margin: 0 auto;
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button-wrapper {
        padding: 1rem 3rem 1rem 2rem;
        justify-content: center;
    }

        .cta-button {
            
            font-size: 0.95rem;
        }
    
        .cta-arrow-btn {
            width: 52px;
            height: 52px;
            margin-left: -10px;
        }

    .carousel-indicators {
        bottom: 3rem;
    }
}

/* Mobile — SMALLER */
@media (max-width: 767px) {
    .hero-section {
        padding: 0 2rem 2.5rem;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .hero-description {
        font-size: 0.98rem;
        margin-bottom: 2rem;
        max-width: 500px;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
        gap: 0.6rem;
        margin-bottom: 1.75rem;
    }

    .avatar {
        width: 28px;
        height: 28px;
    }

    .badge-text {
        font-size: 0.825rem;
    }

    .cta-button {
        padding: 1rem 3rem 1rem 2rem;
        font-size: 0.95rem;
    }

    .cta-arrow-btn {
        width: 52px;
        height: 52px;
        margin-left: -10px;
    }

    .carousel-indicators {
        bottom: 2.5rem;
        gap: 0.6rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .indicator.active {
        width: 24px;
    }
}


/* Large Mobile (480px - 639px) */
@media (max-width: 639px) {
    .hero-section {
        padding: 0 1.5rem 2.25rem;
        min-height: 85vh;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.93rem;
        margin-bottom: 1.75rem;
        max-width: 450px;
    }

    .hero-badge {
        padding: 0.45rem 0.875rem;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .avatar {
        width: 26px;
        height: 26px;
        margin-right: -10px;
    }

    .badge-text {
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 0.875rem 2.5rem 0.875rem 1.75rem;
        font-size: 0.9rem;
    }

    .cta-arrow-btn {
        width: 48px;
        height: 48px;
        margin-left: -8px;
    }

    .arrow-icon {
        width: 20px;
        height: 20px;
    }

    .carousel-indicators {
        bottom: 2rem;
    }
}

/* Medium Mobile (390px - 479px) */
@media (max-width: 479px) {
    .hero-section {
        padding: 0 1.25rem 2rem;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
        max-width: 400px;
    }

    .hero-badge {
        padding: 0.4rem 0.75rem;
        margin-bottom: 1.25rem;
    }

    .avatar {
        width: 24px;
        height: 24px;
    }

    .cta-button {
        padding: 0.8rem 2.25rem 0.8rem 1.5rem;
        font-size: 0.875rem;
    }

    .cta-arrow-btn {
        width: 46px;
        height: 46px;
    }

    .arrow-icon {
        width: 18px;
        height: 18px;
    }

    .carousel-indicators {
        bottom: 1.75rem;
    }
}

/* Small Mobile (360px - 389px) */
@media (max-width: 389px) {
    .hero-section {
        padding: 0 1rem 1.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.875rem;
        max-width: 350px;
    }

    .cta-button {
        padding: 0.75rem 2rem 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .cta-arrow-btn {
        width: 44px;
        height: 44px;
    }
}

/* Extra Small Mobile (≤359px) */
@media (max-width: 359px) {
    .hero-section {
        padding: 0 0.875rem 1.5rem;
        min-height: 75vh;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.6;
        max-width: 300px;
    }

    .hero-badge {
        padding: 0.35rem 0.65rem;
        gap: 0.4rem;
    }

    .avatar {
        width: 22px;
        height: 22px;
        border-width: 1.5px;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .cta-button {
        padding: 0.7rem 1.75rem 0.7rem 1.125rem;
        font-size: 0.8rem;
    }

    .cta-arrow-btn {
        width: 42px;
        height: 42px;
        margin-left: -6px;
    }

    .arrow-icon {
        width: 16px;
        height: 16px;
    }

    .carousel-indicators {
        bottom: 1.5rem;
        gap: 0.5rem;
    }

    .indicator {
        width: 7px;
        height: 7px;
    }

    .indicator.active {
        width: 20px;
    }
}