/* EXACT HERO SECTION REDESIGN */
.hero-section {
    position: relative;
    overflow: visible;
    background: #FDF8F0;
    min-height: 65vh;
    display: flex;
    align-items: center;
}

/* Background Image Container */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Background Slider Wrapper */
.hero-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Gradient Overlay */
.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(253, 248, 240, 1) 0%, rgba(253, 248, 240, 0.95) 40%, rgba(253, 248, 240, 0) 65%);
    z-index: 2;
}

.hero-container {
    height: 100%;
    padding-top: 40px;
    padding-bottom: 120px;
}

/* Typography */
.hero-eyebrow {
    color: #d49a36;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    font-weight: 700;
}

.hero-heading {
    color: #143A2F;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Custom Pill Buttons for Hero */
.btn-pill-solid {
    background-color: #143A2F;
    color: #ffffff !important;
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #143A2F;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-pill-solid:hover {
    background-color: #14523b;
    border-color: #14523b;
}

.btn-pill-outline {
    background-color: transparent;
    color: #143A2F !important;
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #143A2F;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-pill-outline:hover {
    background-color: #143A2F;
    color: #ffffff !important;
}

.btn-pill-solid i, .btn-pill-outline i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-pill-solid i {
    background-color: #ffffff;
    color: #143A2F !important;
}

.btn-pill-outline i {
    background-color: #ffffff;
    color: #143A2F !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Small Glass Stats */

.glass-stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    min-width: 80px;
}

.glass-stat-card:hover {
    transform: translateY(-5px) !important;
}

.stat-title {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1rem;
    letter-spacing: -1px;
    line-height: 1;
    margin-top: 3px;
}

.stat-subtext {
    font-size: 0.65rem;
    margin-top: 2px;
}

/* Floating Play Button */
.watch-story-btn {
    z-index: 10;
    transition: transform 0.3s ease;
}

.watch-story-btn:hover {
    transform: scale(1.05);
}

.play-icon-circle {
    width: 35px;
    height: 35px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.play-icon-circle i {
    color: #1B4D3E !important;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-overlay-gradient {
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 60%, rgba(255, 255, 255, 0.5) 100%);
    }

    .hero-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-slider-wrapper {
        position: relative !important;
        width: 100%;
        height: 45vh !important;
        order: 1;
    }

    .hero-overlay-gradient {
        display: none !important;
    }

    .hero-container {
        position: relative !important;
        height: auto !important;
        order: 2;
        background-color: #FDF8F0;
        padding-top: 30px !important;
        padding-bottom: 20px !important;
    }

    .hero-stats-banner {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding-bottom: 20px;
    }

    .hero-heading {
        font-size: 2.2rem;
    }
    
    .watch-story-btn {
        display: none !important;
    }
    
    .stats-banner-inner {
        flex-direction: row !important;
        padding: 15px 5px !important;
        gap: 0 !important;
        justify-content: space-between !important;
    }
    
    .banner-stat-item {
        width: 25%;
        padding: 0 2px !important;
        border-bottom: none !important;
    }
    
    .banner-stat-item > .d-flex {
        flex-direction: column !important;
        gap: 5px !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .banner-stat-item .text-start {
        text-align: center !important;
    }

    .banner-stat-icon {
        width: 36px !important;
        height: 36px !important;
    }
    
    .banner-stat-icon i {
        font-size: 16px !important;
    }

    .banner-stat-number {
        font-size: 16px !important;
    }

    .banner-stat-label {
        font-size: 9px !important;
        line-height: 1.1;
        display: block;
    }

    .stats-banner-inner .border-end {
        display: none !important;
    }

    .hero-buttons {
        gap: 8px !important;
        margin-bottom: 10px !important;
        justify-content: center !important;
    }
    
    .hero-buttons .btn-pill-solid,
    .hero-buttons .btn-pill-outline {
        padding: 8px 16px !important;
        font-size: 13px !important;
        justify-content: center;
        text-align: center;
        flex: 1 1 auto;
    }
}