/* --- HEADER LOGO --- */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 10;
}

.brand-logo {
    height: 75px;
    object-fit: contain;
    /* Phủ trắng logo nếu logo gốc là màu đen để nổi bật trên nền tối */
    filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
    .brand-logo {
        height: 60px;
    }
}

@media (max-width: 575px) {
    .logo-box {
        display: flex;
        justify-content: center;
    }

    .main-header {
        padding: 15px 0;
    }

    .brand-logo {
        height: 45px;
    }
}

/* Background Image & Overlay */
.hero-section {
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Giảm opacity của màu đen/xanh xuống khoảng 10-15% */
    background: linear-gradient(90deg, rgba(15, 32, 39, 0.85) 0%, rgba(32, 58, 67, 0.7) 50%, rgba(44, 83, 100, 0.4) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

/* Typography */
.trust-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-heading {
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight-text {
    color: #ffc107;
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
    /* Thêm hiệu ứng phát sáng nhẹ */
}

.hero-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.hero-list li {
    color: #f8f9fa;
    font-size: 1.2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.hero-list li i {
    color: #ffc107;
    margin-right: 12px;
    font-size: 1.4rem;
}

/* --- TRUSTPILOT BLOCK CSS --- */
.trustpilot-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 350px;
    position: relative;
    z-index: 30;
}


.tp-logo {
    width: 100px;
}

.tp-stars {
    width: 100px;
}

.tp-text {
    font-size: 0.875rem;
    color: #e2e8f0;
    font-weight: 500;
    margin-top: 4px;
}

.tp-text strong {
    color: #ffffff;
    font-weight: 700;
}

.tp-avatars {
    width: 180px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
    margin-top: 4px;
}

.tp-avatars:hover {
    opacity: 1;
}

/* --- TRUSTPILOT BLOCK CSS (Dành riêng cho MOBILE) --- */
.trustpilot-block-mobile {
    flex-direction: column;
    align-items: center;
    /* Căn giữa toàn bộ theo chiều ngang */
    text-align: center;
    gap: 6px;
    margin-top: 2.5rem;
    /* Khoảng cách so với đáy form */
    width: 100%;
    position: relative;
    z-index: 30;
}

.trustpilot-block-mobile .tp-logo {
    width: 110px;
}

.trustpilot-block-mobile .tp-stars {
    width: 110px;
}

.trustpilot-block-mobile .tp-text {
    font-size: 0.9rem;
    color: #e2e8f0;
    font-weight: 500;
    margin-top: 4px;
}

.trustpilot-block-mobile .tp-text strong {
    color: #ffffff;
    font-weight: 700;
}

.trustpilot-block-mobile .tp-avatars {
    width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
    margin-top: 6px;
}

/* Glassmorphism Form */
.lead-form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.urgency-ribbon {
    position: absolute;
    top: 30px;
    right: -35px;
    background: #ff3366;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.form-label {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-select-lg {
    font-size: 1.1rem;
    padding: 14px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.form-select-lg:focus {
    border-color: #ff3366;
}

/* Pulse Animation CTA */
.btn-cta {
    background: linear-gradient(45deg, #ff3366, #ff6b6b);
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    padding: 18px;
    border-radius: 10px;
    width: 100%;
    border: none;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.4);
    transition: transform 0.2s;
    animation: pulse 2s infinite;
}

.btn-cta:hover {
    transform: scale(1.02);
    color: white;
    animation: none;
    background: linear-gradient(45deg, #ff1a53, #ff5252);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 51, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0);
    }
}

.micro-copy-container {
    margin-top: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 8px;
}

.micro-copy {
    font-size: 0.85rem;
    color: #f8f9fa;
}

.micro-copy-disclaimer {
    font-size: 0.65rem;
    color: #ced4da;
    display: block;
    margin-top: 8px;
    line-height: 1.3;
}

/* =========================================
    RESPONSIVE TWEAKS (Đã điều chỉnh tối ưu Mobile)
========================================= */

/* Cho màn hình Tablet / Laptop nhỏ */
@media (max-width: 991px) {
    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 105px 0;
        background-position: center right;
    }

    .lead-form-card {
        margin-top: 40px;
        padding: 30px;
    }

    .urgency-ribbon {
        top: 26px;
        right: -36px;
        font-size: 0.85rem;
    }

}

/* Cho màn hình Mobile (Điện thoại) */
@media (max-width: 575px) {

    .hero-section {
        padding-top: 80px;
        padding-bottom: 40px;
        background-attachment: scroll;
        background-size: auto 120%;
        background-position: 49% 99%;
    }

    .hero-section .hero-headline {
        padding-left: 25px;
        padding-right: 20px;
    }

    /* Thu nhỏ Badge */
    .trust-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
        margin-bottom: 15px;
    }

    /* Thu nhỏ Tiêu đề chính */
    .hero-heading {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    /* Thu nhỏ Danh sách tính năng */
    .hero-list li {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .hero-list li i {
        font-size: 1.1rem;
    }

    /* Điều chỉnh Form */
    .lead-form-card {
        /* Tăng độ trắng (opacity 0.15) thay vì 0.1 */
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        /* Viền trắng rõ nét hơn */
        border: 1px solid rgba(255, 255, 255, 0.4);
        /* Thêm bóng đổ phát sáng nhẹ bên trong (inset) để tạo khối */
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 20px;
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }

    /* Thu nhỏ Ribbon để không tràn ra ngoài form trên mobile */
    .urgency-ribbon {
        position: absolute;
        top: 20px;
        right: -50px;
        background: linear-gradient(90deg, #ff1a53, #ff3366);
        /* Chuyển màu rực hơn */
        color: white;
        padding: 7px 45px;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
        transform: rotate(45deg);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .form-title {
        font-size: 1.3rem;
    }

    .form-subtitle {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    /* Thu nhỏ ô Select và nút CTA */
    .form-select-lg {
        font-size: 1rem;
        padding: 10px 12px;
    }

    .btn-cta {
        font-size: 1.05rem;
        padding: 14px;
    }

    /* Thu nhỏ chữ ở dưới cùng */
    .micro-copy {
        font-size: 0.75rem;
    }

    .micro-copy-disclaimer {
        font-size: 0.6rem;
    }
}


/* --- 1. TRANSITION FEATURE BAR (Thanh ngang màu đỏ) --- */
.feature-bar {
    background: linear-gradient(90deg, #ff1a53, #ff3366);
    /* Tone đỏ hồng tiệp với nút CTA */
    padding: 20px 0;
    color: #ffffff;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.feature-bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
}

.feature-bar-item i {
    font-size: 1.4rem;
    margin-right: 10px;
    color: #ffc107;
    /* Icon màu vàng để nổi bật trên nền đỏ */
}

/* --- 2. WHY CHOOSE US (Nền Trắng) --- */
.why-choose-us-section {
    background-color: #ffffff;
    /* Nền trắng như yêu cầu */
    padding: 80px 0;
    color: #212529;
}

.section-title-dark {
    color: #112230;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.feature-card-light {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-top: 4px solid #ff3366;
    /* Viền trên màu đỏ đồng bộ */
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Bóng đổ rất nhẹ để card nổi lên */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-light:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon-light {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background: #fff0f3;
    /* Nền hồng nhạt */
    color: #ff3366;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-title-light {
    color: #112230;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.feature-desc-light {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- 3. HOW IT WORKS (Nền Xám Nhạt) --- */
.how-it-works-section {
    background-color: #f8f9fa;
    /* Xám cực nhạt để tách biệt với khối trắng ở trên */
    padding: 80px 0;
}

.section-subtitle-dark {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.steps-container {
    position: relative;
}

/* Đường nối màu xám nhạt */
.connecting-line-light {
    position: absolute;
    top: 45px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #dee2e6;
    z-index: 0;
}

.step-card-light {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-card-light:hover {
    border-color: #ff3366;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.step-icon-light {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 1.8rem;
    color: #112230;
    position: relative;
    transition: all 0.3s ease;
}

.step-card-light:hover .step-icon-light {
    border-color: #ff3366;
    color: #ff3366;
}

.step-number-light {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ffc107;
    /* Số thứ tự màu vàng */
    color: #112230;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    border: 2px solid #ffffff;
}

.center-btn-cta {
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 767px) {
    .feature-bar-item {
        margin-bottom: 15px;
        font-size: 0.85rem;
        justify-content: flex-start;
    }

    /* Căn giữa lại item cuối cùng nếu lẻ */
    .feature-bar .row div:last-child .feature-bar-item {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {

    .why-choose-us-section,
    .how-it-works-section {
        padding: 50px 0;
    }

    .section-title-dark {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .feature-card-light,
    .step-card-light {
        margin-bottom: 20px;
    }
}



/* --- 4. QUALIFY CHECKLIST SECTION (Nền Trắng) --- */
.qualify-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.qualify-header {
    padding-right: 30px;
}

.qualify-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #112230;
    margin-bottom: 20px;
    line-height: 1.2;
}

.qualify-subtitle {
    font-size: 1.15rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Badge màu Vàng Gold thay vì Xanh */
.qualify-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 193, 7, 0.15);
    color: #d39e00;
    /* Màu vàng đậm hơn một chút để dễ đọc trên nền sáng */
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Khối Checklist Card */
.checklist-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    /* Viền trên Vàng Gold đồng bộ với Section 2 và 3 */
    border-top: 5px solid #ffc107;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    position: relative;
}

.qualify-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qualify-list li {
    font-size: 1.1rem;
    color: #212529;
    margin-bottom: 22px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.qualify-list li:last-child {
    margin-bottom: 0;
}

/* Icon tick chuyển sang Vàng Gold */
.check-icon {
    color: #ffc107;
    font-size: 1.6rem;
    margin-right: 15px;
    margin-top: 1px;
    flex-shrink: 0;
    /* Thêm bóng đổ nhẹ để icon vàng nổi bật hơn trên nền trắng */
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.highlight-bold {
    font-weight: 800;
    color: #112230;
}

/* Styling cho phần Note cảnh báo (Đổi sang tone Đỏ Hồng) */
.qualify-note {
    background: #fff0f3;
    /* Nền hồng đỏ nhạt */
    border-left: 4px solid #ff3366;
    /* Viền đỏ hồng của nút CTA */
    padding: 18px 20px;
    border-radius: 8px;
    margin-top: 35px;
    font-size: 0.9rem;
    color: #842029;
    /* Chữ màu đỏ đô đậm dễ đọc */
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.qualify-note i {
    color: #ff3366;
    font-size: 1.3rem;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .qualify-header {
        padding-right: 0;
        text-align: center;
    }

    .checklist-card {
        margin-top: 40px;
    }

    .qualify-badge {
        margin: 0 auto 20px auto;
    }
}

@media (max-width: 575px) {
    .qualify-section {
        padding: 50px 0;
    }

    .qualify-title {
        font-size: 2rem;
    }

    .checklist-card {
        padding: 25px;
    }

    .qualify-list li {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .check-icon {
        font-size: 1.4rem;
    }
}


/* --- 5. REVIEWS SECTION --- */
.reviews-section {
    background-color: #f8f9fa;
    /* Nền xám nhạt */
    padding: 80px 0;
    border-top: 1px solid #e9ecef;
    overflow: hidden;
}

.reviews-header {
    margin-bottom: 50px;
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #112230;
    margin-bottom: 15px;
}

.reviews-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Nút Prev/Next Slider */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #112230;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-btn:hover {
    background: #ff3366;
    color: #ffffff;
    border-color: #ff3366;
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

/* Khung cuộn ngang (Track) */
.review-track {
    display: flex;
    gap: 20px;
    padding: 10px 5px;
}

/* Thẻ Review cá nhân */
.review-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-item:hover {
    box-shadow: 0 8px 30px rgba(255, 51, 102, 0.08);
    border-color: rgba(255, 51, 102, 0.2);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.reviewer-details h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #112230;
    margin: 0;
}

.reviewer-meta {
    font-size: 0.75rem;
    color: #adb5bd;
    margin-top: 2px;
}

.reviewer-meta i {
    color: #00d27a;
    /* Màu xanh lá cho chữ Verified */
    margin-left: 5px;
    margin-right: 2px;
}

.country-flag {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-left: auto;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.reviewer-social {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.review-text {
    font-size: 0.9rem;
    color: #495057;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Chấm tròn Desktop */
.dots-container {
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.dot-btn.active,
.dot-btn:hover {
    background: #ff3366;
    transform: scale(1.2);
}

/* Nút Show More Mobile */
.btn-show-more {
    background: #ffffff;
    border: 2px solid rgba(255, 51, 102, 0.3);
    color: #ff3366;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-show-more:hover {
    background: #fff0f3;
}

.dot-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    /* Màu xám nhạt */
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.dot-btn.active {
    background: #ff3366;
    /* Đổi sang màu Đỏ Hồng khi active */
    transform: scale(1.2);
    /* Phóng to lên xíu */
}


/* =================================
           RESPONSIVE LOGIC CHO REVIEWS
           ================================= */

/* DESKTOP (Lớn hơn 991px): Giao diện trượt (Scroll ngang) */
@media (min-width: 992px) {
    .review-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        /* Ẩn thanh scroll IE */
        scrollbar-width: none;
        /* Ẩn thanh scroll Firefox */
    }

    .review-track::-webkit-scrollbar {
        display: none;
        /* Ẩn thanh scroll Chrome/Safari */
    }

    .review-item {
        min-width: calc(33.333% - 15px);
        /* Hiện 3 cục trên 1 màn hình */
        scroll-snap-align: start;
    }

    .mobile-hidden {
        display: flex !important;
        /* Đảm bảo luôn hiện trên Desktop */
    }
}

/* MOBILE/TABLET (Nhỏ hơn 991px): Giao diện xếp dọc chồng lên nhau */
@media (max-width: 991px) {
    .reviews-section {
        padding: 50px 0;
    }

    .reviews-title {
        font-size: 2rem;
    }

    .review-track {
        flex-direction: column;
        /* Xếp dọc thay vì ngang */
        gap: 15px;
        padding: 0;
    }

    .review-item {
        width: 100%;
    }

    /* Lớp ẩn Review trên Mobile */
    .mobile-hidden {
        display: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- 6. FAQ SECTION --- */
.faq-section {
    background-color: #ffffff;
    /* Nền trắng xen kẽ với nền xám của Reviews */
    padding: 80px 0;
    border-top: 1px solid #e9ecef;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #112230;
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* Thẻ FAQ Item */
.faq-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 25px 30px;
    margin-bottom: 20px;
    /* Khoảng cách giữa các thẻ nếu bị rớt dòng */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    /* Căn đều chiều cao trong grid */
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(255, 51, 102, 0.08);
    /* Bóng đổ hồng đỏ */
    border-color: rgba(255, 51, 102, 0.2);
}

/* Nút bấm Toggle */
.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
    color: #112230;
}

.faq-btn:focus {
    outline: none;
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    padding-right: 20px;
    transition: color 0.3s ease;
}

.faq-btn:hover .faq-question,
.faq-btn.active .faq-question {
    color: #ff3366;
    /* Đổi màu chữ khi hover hoặc đang mở */
}

/* Khối Icon Tròn */
.faq-icon-wrapper {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: #fff0f3;
    /* Nền hồng nhạt */
    color: #ff3366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-btn.active .faq-icon-wrapper {
    background: #ff3366;
    color: #ffffff;
    transform: rotate(180deg);
}

/* Khối Nội dung ẩn (Accordion Content) */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-text {
    padding-top: 15px;
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 575px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 1rem;
    }
}


/* --- 7. FOOTER SECTION --- */
.footer-section {
    background-color: #0b171e;
    /* Tone nền đen đồng bộ với Hero Section */
    border-top: 4px solid #ff3366;
    /* Viền trên cùng màu Đỏ Hồng */
    padding: 60px 0 30px 0;
    color: #adb5bd;
    font-size: 0.85rem;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
    /* Phủ trắng logo gốc */
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    color: #6c757d;
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* Menu Links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: #ced4da;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff3366;
    /* Hover chuyển màu Đỏ Hồng */
}

.footer-divider {
    color: #495057;
}

/* Khối Disclaimer Text */
.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.7rem;
    color: #6c757d;
    line-height: 1.6;
    text-align: center;
}

.footer-disclaimer p {
    margin-bottom: 15px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-copyright {
    margin-top: 40px;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 767px) {
    .footer-divider {
        display: none;
    }

    .footer-links {
        gap: 12px 20px;
    }

    .footer-disclaimer {
        text-align: justify;
        padding: 30px 15px 0 15px;
    }

    .footer-section {
        padding-bottom: 80px;
        /* Chừa không gian cho nút cuộn mobile nếu có */
    }
}


/* --- STICKY MOBILE CTA CSS (Full Width) --- */
.btn-sticky-cta {
    position: fixed;
    bottom: -100px;
    /* Giấu nút dưới đáy màn hình */
    left: 0;
    width: 100%;
    /* Tràn 100% chiều ngang */
    background: linear-gradient(45deg, #ff3366, #ff6b6b);
    color: white !important;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 18px;
    /* Tăng padding để nút to, dễ bấm hơn */

    /* Gỡ bỏ các giới hạn */
    max-width: none;
    border-radius: 0;
    /* Vuông vức tràn viền */
    border: none;

    text-transform: uppercase;
    box-shadow: 0 -4px 15px rgba(255, 51, 102, 0.4);
    /* Bóng đổ hắt lên trên */
    z-index: 99999;

    /* Flexbox để căn giữa chữ và icon */
    display: flex;
    justify-content: center;
    align-items: center;

    /* Hiệu ứng trượt lên */
    transition: bottom 0.4s ease-in-out;
    animation: pulse 2s infinite;
}

/* Class được JS gọi để đẩy nút lên sát đáy */
.btn-sticky-cta.visible {
    bottom: 0 !important;
}