/* ═══════════════════════════════════════
   HERO BANNER — Unified Slide + Hero
═══════════════════════════════════════ */

.hero-banner {
    position: relative;
    min-height: 520px;
    background: linear-gradient(135deg, #0D2812 0%, #1a3a1f 40%, #2d4a32 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Slide as Background */
.hero-banner__slide {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-banner__slide .owl-carousel,
.hero-banner__slide .owl-stage-outer,
.hero-banner__slide .owl-stage,
.hero-banner__slide .owl-item,
.hero-banner__slide .slideshow-item,
.hero-banner__slide .slideshow-image {
    height: 100%;
}

.hero-banner__slide .slideshow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark overlay for readability */
.hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 40, 18, 0.85) 0%,
        rgba(13, 40, 18, 0.6) 50%,
        rgba(13, 40, 18, 0.4) 100%
    );
    z-index: 2;
}

/* Content on top */
.hero-banner__content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 0 60px;
}

.hero-banner__badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(200, 169, 81, 0.5);
    border-radius: 50px;
    color: #C8A951;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    background: rgba(200, 169, 81, 0.08);
}

.hero-banner__title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-banner__title em {
    color: #C8A951;
    font-style: italic;
    font-weight: 700;
}

.hero-banner__sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    margin: 0 0 32px;
    letter-spacing: 1px;
}

/* CTA Buttons */
.hero-banner__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-banner__btn--gold {
    background: #C8A951;
    color: #0D2812;
}

.hero-banner__btn--gold:hover {
    background: #d4b95f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 169, 81, 0.35);
}

.hero-banner__btn--outline {
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    background: transparent;
}

.hero-banner__btn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Stats */
.hero-banner__stats {
    display: flex;
    gap: 48px;
}

.hero-banner__stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #C8A951;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-banner__stat span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Slide controls */
.hero-banner .control-slideshow {
    opacity: 0;
    z-index: 4;
}

.hero-banner:hover .control-slideshow {
    opacity: 1;
}

.control-owl {
    position: absolute;
    width: 100%;
    z-index: 4;
    left: 0px;
    top: 50%;
}

.control-owl button {
    opacity: 0.5;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    outline: none;
    border: 0px;
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    width: 45px;
    height: 45px;
    font-size: 25px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.control-owl button:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

.control-owl button.owl-prev {
    left: 20px;
}

.control-owl button.owl-next {
    right: 20px;
}

/* Owl dots override */
.hero-banner .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.hero-banner .owl-dot span {
    background: rgba(255,255,255,0.4) !important;
}

.hero-banner .owl-dot.active span {
    background: #C8A951 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-banner {
        min-height: 420px;
    }

    .hero-banner__content {
        padding: 60px 0 48px;
    }

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

    .hero-banner__stats {
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        min-height: 380px;
    }

    .hero-banner__content {
        padding: 48px 0 36px;
    }

    .hero-banner__title {
        font-size: 1.7rem;
    }

    .hero-banner__sub {
        font-size: 0.95rem;
    }

    .hero-banner__actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-banner__btn {
        justify-content: center;
        padding: 12px 24px;
    }

    .hero-banner__stats {
        gap: 20px;
    }

    .hero-banner__stat strong {
        font-size: 1.4rem;
    }

    .hero-banner__stat span {
        font-size: 0.75rem;
    }
}
