/* ======================================== */
/* HERO BANNER - Swiper Carousel            */
/* ======================================== */

/* ---------------------------------------- */
/* Container                                */
/* ---------------------------------------- */
.hero-banner-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 420px;
    width: 100%;
    display: block;
}

.hero-banner-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(270deg, rgba(6, 29, 71, 0) 0%, rgba(6, 29, 71, 0.6) 100%);
    width: 100%;
    pointer-events: none;
}

.hero-effect-container {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay-inner {
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

/* ---------------------------------------- */
/* Swiper Base                              */
/* ---------------------------------------- */
.hero-banner-swiper {
    height: 100%;
    --swiper-navigation-color: #fff;
    --swiper-pagination-color: #fff;
}

.hero-banner-swiper .swiper-slide {
    opacity: 0 !important;
    transition: opacity 0.5s ease;
}

.hero-banner-swiper .swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}

/* ---------------------------------------- */
/* Slide Structure                          */
/* ---------------------------------------- */
.hero-slide-inner {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-slide-center {
    padding: 20px 0;
    text-align: center;
}

.hero-headline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 auto 20px;
    max-width: 600px;
    text-align: center;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 30px;
    max-width: 500px;
    text-align: center;
}

/* ---------------------------------------- */
/* CTA Button                               */
/* ---------------------------------------- */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    pointer-events: auto;
    border: 1px solid #2062C5;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
    color: #ffffff;
    background-color: #2062C5;
    text-decoration: none;
    transition: background-color 0.3s, border-color 0.3s;
    box-shadow: 0 10px 30px rgba(32, 98, 197, 0.25);
    font-family: 'Inter', sans-serif;
}

.hero-btn:hover {
    background-color: #1855B1;
    border-color: #1855B1;
}

.hero-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.5s;
    opacity: 0.8;
    transform: translateX(-105%);
    border-right: 2px solid #fff;
    background-color: rgba(255, 255, 255, 0.3);
}

.hero-btn:hover::after {
    opacity: 0;
    transform: translateX(0);
}

/* ---------------------------------------- */
/* Stats                                    */
/* ---------------------------------------- */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
    justify-content: center;
}

.hero-stat {
    flex: 1 1 auto;
    min-width: 140px;
    text-align: center;
}

.hero-stat-value {
    font-size: 35px;
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
}

.hero-stat-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 5px 0 0;
}

/* ---------------------------------------- */
/* Mobile (max-width: 768px)                */
/* ---------------------------------------- */
@media (max-width: 768px) {
    .hero-banner-section {
        display: none;
    }
}

/* ---------------------------------------- */
/* Tablet (769px - 1023px)                  */
/* ---------------------------------------- */
@media (min-width: 769px) and (max-width: 1023px) {
    .hero-banner-section {
        min-height: 500px;
    }

    .hero-headline {
        font-size: 45px;
        max-width: 500px;
    }

    .hero-description {
        font-size: 16px;
        max-width: 400px;
    }

    .hero-stat-value {
        font-size: 45px;
    }
}

/* ---------------------------------------- */
/* Desktop (1024px+)                        */
/* ---------------------------------------- */
@media (min-width: 1024px) {
    .hero-banner-section {
        min-height: 700px;
        height: 100vh;
        max-height: 900px;
    }

    .hero-banner-section::after {
        width: 100%;
    }

    .hero-slide-inner {
        padding: 0;
    }

    .hero-overlay-inner {
        max-width: 900px;
    }

    .hero-headline {
        font-size: 47px;
        max-width: 700px;
    }

    .hero-slide-center {
        padding: 20px 0 30px;
    }

    .hero-stats {
        padding: 10px 0 0;
    }

    .hero-stat-value {
        font-size: 55px;
    }

    .hero-stat {
        min-width: auto;
    }

    .hero-stat:first-child {
        width: 25%;
    }

    .hero-stat:last-child {
        width: 33.333%;
    }

    .hero-btn {
        font-size: 20px;
        padding: 15px 36px;
    }
}

/* ---------------------------------------- */
/* Large Desktop (1281px+)                  */
/* ---------------------------------------- */
@media (min-width: 1281px) {
    .hero-headline {
        font-size: 52px;
        max-width: 900px;
    }
}

/* ---------------------------------------- */
/* Extra Large Desktop (1481px+)            */
/* ---------------------------------------- */
@media (min-width: 1481px) {
    .hero-banner-section {
        max-height: 1000px;
    }

    .hero-headline {
        font-size: 64px;
        max-width: 1000px;
    }

    .hero-stat-value {
        font-size: 72px;
    }

    .hero-stat-label {
        font-size: 16px;
    }
}

/* ---------------------------------------- */
/* 2XL Desktop (1681px+)                    */
/* ---------------------------------------- */
@media (min-width: 1681px) {
    .hero-banner-section {
        max-height: 1100px;
    }

    .hero-slide-inner {
        padding: 0;
    }

    .hero-headline {
        font-size: 77px;
        max-width: 1100px;
    }

    .hero-stat-value {
        font-size: 85px;
    }
}

/* ---------------------------------------- */
/* Animations                               */
/* ---------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}