/* ==========================================================================
   HERO SWIPER SLIDER BANNER - BEM (TRANG CHỦ)
   ========================================================================== */
.hero,
.hero-swiper-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero__container,
.hero-swiper-container {
    width: 100%;
    min-height: clamp(650px, 85vh, 850px);
}

.hero__slide,
.hero-slide-item {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: clamp(650px, 85vh, 850px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 300px !important;
    box-sizing: border-box !important;
}

.hero__overlay,
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4) !important;
    z-index: 1;
}

.hero__slide>.container,
.hero-slide-item>.container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero__content,
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 0px !important;
    margin-top: 0 !important;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.hero__content.align-left,
.hero__content.text-left,
.hero-content.align-left,
.hero-content.text-left {
    align-items: flex-start !important;
    text-align: left !important;
    margin-left: 0 !important;
}

.hero__content.align-left .hero__main-title,
.hero__content.align-left .hero__desc,
.hero__content.text-left .hero__main-title,
.hero__content.text-left .hero__desc,
.hero-content.align-left .hero-main-title,
.hero-content.align-left .hero-desc,
.hero-content.text-left .hero-main-title,
.hero-content.text-left .hero-desc {
    text-align: left !important;
    margin-left: 0 !important;
}

.hero__sub-title,
.hero-sub-title {
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-white);
    display: block;
    margin: 0 0 8px 0 !important; /* KHẮC PHỤC: Reset toàn bộ margin và đặt margin-bottom mong muốn (ví dụ 8px) */
}
.hero__main-title,
.hero-main-title {
    margin: 0 0 0px 0;
    color: var(--text-white);
    letter-spacing: 0.3px;
}

.hero__desc,
.hero-desc {
    color: var(--text-white);
    margin: 0 auto;
    max-width: 680px;
}

.hero__desc strong,
.hero-desc strong {
    font-weight: 600;
    color: var(--text-white);
}

/* PHÂN TRANG DẤU GẠCH DẸT CỦA BANNER SLIDER */
.hero__pagination,
.hero-swiper-pagination {
    position: absolute !important;
    bottom: 35px !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 5 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
}

.hero__pagination .swiper-pagination-bullet,
.hero-swiper-pagination .swiper-pagination-bullet {
    width: 45px !important;
    height: 3px !important;
    border-radius: 0 !important;
    background-color: rgba(255, 255, 255, 0.45) !important;
    opacity: 1 !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.hero__pagination .swiper-pagination-bullet-active,
.hero-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--text-white) !important;
    width: 75px !important;
}

@media (max-width: 767px) {

    .hero__container,
    .hero-swiper-container,
    .hero__slide,
    .hero-slide-item {
        min-height: 540px !important;
    }

    .hero__slide,
    .hero-slide-item {
        align-items: flex-start !important;
        justify-content: center !important;
        padding-top: 250px !important;
        padding-bottom: 50px !important;
        box-sizing: border-box !important;
    }

    .hero__content,
    .hero-content {
        margin-top: 0 !important;
        padding: 0 15px !important;
    }

    .hero__sub-title,
.hero-sub-title {
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-white);
    display: block;
    margin: 0 0 8px 0 !important; /* KHẮC PHỤC: Reset toàn bộ margin và đặt margin-bottom mong muốn (ví dụ 8px) */
}

    .hero__main-title,
    .hero-main-title {
        margin-bottom: 12px !important;
    }

    .hero__pagination,
    .hero-swiper-pagination {
        bottom: 20px !important;
    }

    .hero__pagination .swiper-pagination-bullet,
    .hero-swiper-pagination .swiper-pagination-bullet {
        width: 35px !important;
    }

    .hero__pagination .swiper-pagination-bullet-active,
    .hero-swiper-pagination .swiper-pagination-bullet-active {
        width: 55px !important;
    }
}