/* --- CONTAINER BỌC NGOÀI CÙNG --- */
.flexfit-slider-container {
    background-color: #2e2f7b;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.flexfit-slider-container * {
    box-sizing: border-box;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    max-width: 1100px;
    gap: 40px;
}

/* --- NAVIGATION BÊN TRÁI (PC) --- */
.nav-sidebar {
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Ép lại khung Pagination, vô hiệu hóa các transform/absolute của Elementor */
.flexfit-slider-container .swiper-pagination {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    transform: none !important; 
    bottom: auto !important;
    left: auto !important;
}

/* Ghi đè triệt để các thuộc tính Elementor gán cho thẻ bullet */
.flexfit-slider-container .swiper-pagination-bullet {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    height: 60px !important;
    background: transparent !important;
    opacity: 1 !important; /* Phá opacity: 0.2 mặc định của Elementor */
    margin: 0 !important;
    border-radius: 0 !important;
    cursor: pointer;
}

.flexfit-slider-container .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-top: -1px !important;
}

/* Các thành phần bên trong vòng tròn giữ nguyên */
.bullet-circle {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #4aa4df;
    flex-shrink: 0;
    z-index: 2;
}

.bullet-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid #4aa4df;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.bullet-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.4;
    margin-left: 15px;
    max-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

/* ACTIVE STATE - Ép thêm !important để đảm bảo màu sắc chuẩn */
.flexfit-slider-container .swiper-pagination-bullet-active {
    background: transparent !important;
}
.flexfit-slider-container .swiper-pagination-bullet-active .bullet-circle { 
    color: #ffffff !important; 
}
.flexfit-slider-container .swiper-pagination-bullet-active .bullet-circle::before { 
    clip-path: inset(0 50% 0 0); 
}
.flexfit-slider-container .swiper-pagination-bullet-active .bullet-text { 
    opacity: 1 !important; 
    visibility: visible !important; 
    transform: translateX(0) !important; 
}

/* --- KHU VỰC BÊN PHẢI --- */
.right-content {
    flex-grow: 1;
    width: calc(100% - 290px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flexfit-slider-container .swiper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #fff;
}

.flexfit-slider-container .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- FOOTER CONTENT --- */
.slide-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.footer-number {
    font-size: 65px;
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
    line-height: 1;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4aa4df;
    line-height: 1.4;
    max-width: 250px;
}

.footer-desc {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.5;
    max-width: 350px;
}

/* --- NÚT ĐIỀU HƯỚNG MOBILE --- */
.mobile-nav-buttons { display: none; gap: 15px; margin-top: 10px; }
.m-btn {
    width: 45px; height: 45px; border: 1px solid #ffffff; background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s;
}
.m-btn:hover { background: rgba(255,255,255,0.1); }
.m-btn svg { width: 24px; height: 24px; fill: none; stroke: #ffffff; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .slider-wrapper { flex-direction: column; gap: 20px; }
    .nav-sidebar { display: none; }
    .right-content { width: 100%; }
    .slide-footer { flex-direction: column; align-items: flex-start; gap: 15px; }
    .footer-number { font-size: 55px; }
    .footer-title { font-size: 16px; max-width: 100%; }
    .footer-desc { font-size: 14px; max-width: 100%; }
    .mobile-nav-buttons { display: flex; }
}