@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');

:root {
    --navy: #00008A;
    --orange: #ee5421;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-xl: 35px;
}


.hero-full {
    position: relative;
    width: 100%;
    height: 800px; 
    display: flex;
    align-items: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    
    background-image: var(--bg-desktop);
    background-size: cover;
    background-position: center;
}

.hero-full::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 138, 0.9) 0%, rgba(0, 0, 138, 0.5) 25%, rgba(0, 0, 138, 0) 40%);
    z-index: 1;
}

.hero-full .container { 
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px; 
    margin: auto; 
    padding: 0 80px; 
}

.hero-content-full {
    width: 33.33%; 
    min-width: 450px;
    text-align: left;
    animation: fadeInUp 1s var(--transition-smooth);
}

.hero-badge-inline {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.hero-badge-inline i { color: #ffce00; margin-right: 12px; }

.hero-content-full h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.text-orange { color: var(--orange); }

.hero-content-full p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-tis-v3 {
    display: inline-block;
    text-decoration: none;
    background: var(--orange);
    color: #fff;
    padding: 20px 50px;
    border-radius: var(--radius-xl);
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(238, 84, 33, 0.4);
}


@media (max-width: 1024px) {
    .hero-full {
        height: auto;
        min-height: 100vh; 
        aspect-ratio: 1080 / 1920; 
        display: block; 
        
        background-image: var(--bg-mobile) !important;
        background-position: center top; 
    }

    .hero-full::before {
        background: linear-gradient(to bottom, 
            rgba(0, 0, 138, 1) 0%, 
            rgba(0, 0, 138, 0.8) 10%, 
            rgba(0, 0, 138, 0) 30%);
        z-index: 1;
    }

    .hero-full .container {
        position: absolute;
        top: 40px;
        left: 0;
        width: 100%;
        padding: 0 20px;
        z-index: 5;
    }

    .hero-content-full {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: unset;
        margin-top: 0;
    }

    .hero-content-full h1 { 
        font-size: 26px; 
        margin-bottom: 10px; 
        text-shadow: 0 2px 10px rgba(0,0,0,0.5); 
    }
    
    .hero-content-full p { 
        font-size: 14px; 
        margin-bottom: 20px;
        line-height: 1.4;
        max-width: 80%;
        text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    }
    
    .btn-tis-v3 { 
        font-size: 14px; 
        padding: 12px 35px; 
        border-radius: 50px; 
    }
    
    .hero-badge-inline { 
        font-size: 10px; 
        padding: 6px 15px; 
        border-radius: 50px; 
        margin-bottom: 15px; 
        background: rgba(0, 0, 138, 0.5);
    }
}
.bento-header h2.text-navy {
    color: var(--navy);
    font-weight: 800;
    font-size: 32px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 40px;
}

.bento-header h2.text-navy::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--orange);
    margin: 20px auto 0;
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .tis-bento-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 0 20px;
    }
    .item-1, .item-2, .item-3, .item-4, .item-5, .item-6, .item-7 {
        grid-column: span 1;
        grid-row: auto;
        min-height: 200px;
    }
    .bento-header h2.text-navy {
        font-size: 24px;
    }
}
.tag-sub { color:#ee5421; font-weight:700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.text-navy { font-weight:900; font-size: 36px; color: #00008A; }
.header-line { width: 60px; height: 3px; background: #ee5421; margin: 20px auto; }
.tis-form-section { padding: 100px 0; background: var(--soft-bg); font-family: 'Plus Jakarta Sans', sans-serif; position: relative; }

.tis-form-section::before {
 content: "";    position: absolute; top: 10%; left: 5%; font-size: 100px; color: rgba(238, 84, 33, 0.05); transform: rotate(-15deg);
}

.tis-form-section .container { max-width: 1200px; margin: auto; padding: 0 20px; position: relative; z-index: 2; }

.tis-form-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }

.tis-form-content .tag {
    background: var(--orange); color: #fff; padding: 6px 15px;
    font-size: 12px; font-weight: 700; display: inline-block; margin-bottom: 25px; border-radius: 4px;
}
.tis-form-content h2 { font-size: 42px; font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 25px; }
.tis-form-content h2 span { color: var(--orange); }
.tis-form-content p { font-size: 17px; color: #475569; line-height: 1.8; margin-bottom: 40px; }

.tis-points { display: grid; grid-template-columns: 1fr; gap: 15px; }
.point { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 600; color: var(--navy); }
.point .icon {
    width: 28px; height: 28px; background: rgba(0, 0, 138, 0.1); color: var(--navy);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px;
}

.tis-form-card { background: #fff; padding: 50px; box-shadow: 0 40px 80px rgba(0,0,138,0.06); border-radius: 20px; border: 1px solid #edf2f7; }
.tis-form-card form { display: grid; gap: 20px; }

.field-group { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; }

.field input, .field select, .field textarea {
    padding: 14px 18px; border: 1.5px solid #eef2f6; border-radius: 12px;
    font-family: inherit; font-size: 15px; transition: 0.3s; background: #fcfdfe;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 10px 20px rgba(0,0,138,0.04);
}

.tis-submit {
    background: var(--navy); color: #fff; padding: 18px; border: none;
    font-weight: 800; font-size: 16px; cursor: pointer; transition: 0.4s;
    border-radius: 12px; text-transform: uppercase; letter-spacing: 1px; margin-top: 10px;
}
.tis-submit:hover { background: var(--orange); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(238, 84, 33, 0.25); }

.consent-box { font-size: 13px; color: #64748b; line-height: 1.5; margin-top: 10px; display: flex; gap: 10px; }
.consent-box input { width: 18px; height: 18px; accent-color: var(--navy); margin-top: 2px; flex-shrink: 0; }

@media (max-width: 991px) {
    .tis-form-grid { grid-template-columns: 1fr; gap: 50px; }
    .tis-form-content { text-align: center; }
    .tis-points { justify-content: center; }
    .tis-form-card { padding: 30px; }
}


/* --- 1. SETUP CONTAINER & GRID --- */
.unique-values-bento .bento-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Chia 3 cột lớn */
    grid-auto-rows: 220px; /* Chiều cao cố định mỗi hàng để các ô khít nhau */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- 2. BASE ITEM STYLE --- */
.unique-values-bento .bento-item {
    border-radius: 20px; /* Bo góc mềm mại như ảnh */
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
}

/* --- 3. PHÂN CHIA CỘT CHÍNH XÁC THEO ẢNH --- */
/* Thẻ Song Ngữ (Trắng - Trên cùng bên trái) */
.item-language {
    grid-column: 1 / 3; /* Chiếm 2 cột */
    grid-row: 1 / 2;
    background: #ffffff;
}

/* Thẻ Khoa Học (Ảnh - To bên phải) */
.item-science {
    grid-column: 3 / 4; /* Cột thứ 3 */
    grid-row: 1 / 3;    /* Cao bằng 2 hàng */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 0 !important;
}

/* Thẻ Tư Duy (Xanh Navy - Giữa bên trái) */
.item-mindset {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

/* Thẻ Kỹ Năng (Xám nhạt - Giữa ở giữa) */
.item-skills {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background: #f1f5f9;
}

/* Thẻ Nhịp Học (Cam - Dưới cùng) */
.item-momentum {
    grid-column: 1 / 3; /* Chiếm 2 cột dưới */
    grid-row: 3 / 4;
}

/* --- 4. XỬ LÝ CHỮ VÀ MÀU SẮC (SỬA LỖI ĐỘ TƯƠNG PHẢN) --- */
.bento-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-top: auto; /* Đẩy tiêu đề xuống dưới */
    margin-bottom: 8px;
    text-transform: uppercase;
}

.bento-item p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Fix lỗi chữ đen trên nền xanh/cam */
.text-white h4, .text-white p,
.bg-navy h4, .bg-navy p,
.bg-orange h4, .bg-orange p {
    color: #ffffff !important;
}

/* Màu Navy & Cam chuẩn theo ảnh */
.bg-navy { background-color: #0a0a8f; }
.bg-orange { background-color: #eb5722; }

/* --- 5. ICONS TRONG ẢNH --- */
.bento-icon-text, .bento-icon-light, .bento-icon-grey {
    font-size: 2.2rem;
    margin-bottom: 15px;
    display: block;
}

/* --- 6. XỬ LÝ RIÊNG CHO Ô CÓ ẢNH (KHOA HỌC) --- */
.bento-overlay {
    height: 100%;
    width: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Hiệu ứng mờ dần từ dưới lên để đọc chữ dễ hơn */
    background: linear-gradient(to top, rgba(10, 10, 143, 0.9) 0%, rgba(0,0,0,0) 50%);
}

/* --- 7. HIỆU ỨNG HOVER --- */
.bento-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 5;
}

/* --- 8. RESPONSIVE (MOBILE) --- */
@media (max-width: 991px) {
    .unique-values-bento .bento-container {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: min-content;
    }
    .item-language, .item-science, .item-momentum {
        grid-column: span 2;
    }
    .item-science { height: 400px; }
}

@media (max-width: 600px) {
    .unique-values-bento .bento-container {
        grid-template-columns: 1fr;
    }
    .bento-item {
        grid-column: span 1 !important;
        height: auto;
        min-height: 200px;
    }
}
/* --- 1. CẤU TRÚC GRID CỐ ĐỊNH (Quan trọng nhất) --- */
.unique-values-bento .bento-container {
    display: grid;
    /* Chia làm 3 cột bằng nhau */
    grid-template-columns: repeat(3, 1fr);
    /* Định nghĩa 3 hàng với chiều cao bằng nhau (ví dụ 220px mỗi hàng) */
    grid-auto-rows: 220px; 
    gap: 20px;
    
    /* Định nghĩa vị trí từng ô theo tên class */
    grid-template-areas: 
        "lang lang science"
        "mind skill science"
        "moment moment moment"; /* Ô cam chiếm hết hàng 3 hoặc 2/3 tùy bạn */
}

/* --- 2. GÁN VỊ TRÍ CHO TỪNG Ô --- */
.item-language { grid-area: lang; }
.item-science  { grid-area: science; }
.item-mindset  { grid-area: mind; }
.item-skills   { grid-area: skill; }
.item-momentum { grid-area: moment; }

/* --- 3. FIX CHIỀU CAO VÀ NỘI DUNG --- */
.unique-values-bento .bento-item {
    height: 100%; /* Ép ô luôn cao bằng khung lưới */
    margin-bottom: 0 !important; /* Xóa margin thừa gây lệch */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Icon ở trên, chữ ở dưới */
    padding: 30px;
    border-radius: 20px;
    box-sizing: border-box;
}

/* --- 4. XỬ LÝ RIÊNG Ô KHOA HỌC (Ô ẢNH) --- */
.item-science {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0 !important; /* Quan trọng để overlay phủ kín */
}

.item-science .bento-overlay {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 10, 143, 0.9) 10%, transparent 60%);
    color: #fff;
}

/* --- 5. ĐẢM BẢO MÀU CHỮ TRÊN NỀN ĐẬM --- */
.bg-navy, .bg-orange {
    color: #ffffff !important;
}

.bg-navy h4, .bg-orange h4, .bg-navy p, .bg-orange p {
    color: #ffffff !important;
}

/* Thẻ xám nhạt */
.bg-light-grey {
    background-color: #f1f5f9;
}

/* --- 6. RESPONSIVE CHO MOBILE --- */
@media (max-width: 991px) {
    .unique-values-bento .bento-container {
        grid-template-areas: 
            "lang lang"
            "science science"
            "mind skill"
            "moment moment";
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto; /* Để mobile tự co giãn theo nội dung */
    }
    .bento-item { min-height: 200px; }
}

@media (max-width: 600px) {
    .unique-values-bento .bento-container {
        grid-template-areas: 
            "lang"
            "science"
            "mind"
            "skill"
            "moment";
        grid-template-columns: 1fr;
    }
}


/* --- 1. CONTAINER & GENERAL --- */
.week-themes {
    background-color: #ffffff;
    overflow: hidden;
}

.week-themes .themes-container {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Khoảng cách giữa các hàng chủ đề */
}

/* --- 2. THEME ROW (Z-PATTERN) --- */
.theme-row {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #f8fafc;
    border-radius: 40px;
    padding: 20px;
    transition: all 0.4s ease;
}

.theme-row.row-reverse {
    flex-direction: row-reverse;
}

.theme-row:hover {
    background: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 138, 0.1);
}

/* --- 3. IMAGE & TAG --- */
.theme-image {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 350px;
}

.theme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.theme-row:hover .theme-image img {
    transform: scale(1.05);
}

.week-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(238, 84, 33, 0.3);
}

/* --- 4. CONTENT & LIST --- */
.theme-content {
    flex: 1;
    padding-right: 30px;
}

.theme-row.row-reverse .theme-content {
    padding-right: 0;
    padding-left: 30px;
}

.theme-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.theme-content p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.theme-list {
    list-style: none;
    padding: 0;
}

.theme-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--navy);
}

.theme-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 900;
}

/* --- 5. THEME ROW FINAL (TUẦN 5) --- */
.theme-row-final {
    display: flex;
    background: var(--navy);
    border-radius: 40px;
    overflow: hidden;
    color: #fff;
    margin-top: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 138, 0.2);
}

.final-content {
    flex: 1.2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.final-image {
    flex: 1;
}

.final-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.week-tag-final {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-more {
    display: inline-block;
    width: fit-content;
    margin-top: 30px;
    padding: 15px 35px;
    background: var(--orange);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: #fff;
    color: var(--orange);
    transform: translateY(-3px);
}

/* --- 6. RESPONSIVE --- */
@media (max-width: 991px) {
    .theme-row, .theme-row.row-reverse, .theme-row-final {
        flex-direction: column;
        gap: 30px;
        padding: 15px;
    }
    
    .theme-content, .theme-row.row-reverse .theme-content, .final-content {
        padding: 20px;
    }
    
    .theme-image {
        min-height: 250px;
        width: 100%;
    }

    .final-image {
        order: -1; /* Đưa ảnh lên trước nội dung trên mobile */
        height: 300px;
    }
}
/* --- 1. SỬA LỖI ẢNH BỊ CẮT --- */
.theme-image {
    flex: 1;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    /* Ép tỉ lệ khung hình để ảnh luôn đẹp (Tỉ lệ 4:3 hoặc 3:2) */
    aspect-ratio: 4 / 3; 
    min-height: 300px; /* Đảm bảo không bị quá nhỏ trên màn hình trung bình */
}

.theme-image img {
    width: 100%;
    height: 100%;
    /* Quan trọng: 'cover' sẽ giúp ảnh đầy khung mà không bị méo, 
       nhưng ta cần căn giữa để không mất mặt người trong ảnh */
    object-fit: cover;
    object-position: center; 
    display: block;
}

/* --- 2. ĐIỀU CHỈNH THEME ROW ĐỂ CÂN BẰNG --- */
.theme-row {
    display: flex;
    align-items: stretch; /* Để ảnh và chữ cao bằng nhau tự động */
    gap: 40px;
    background: #f8fafc;
    border-radius: 35px;
    padding: 30px; /* Tăng padding để tạo không gian thở */
    margin-bottom: 40px;
}

.theme-content {
    flex: 1.2; /* Cho phần chữ rộng hơn ảnh một chút để dễ đọc */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Căn giữa nội dung theo chiều dọc của ảnh */
}

/* --- 3. SỬA LỖI Ô TUẦN 5 (FINAL) --- */
.theme-row-final {
    display: flex;
    align-items: stretch;
    background: #00008A;
    border-radius: 35px;
    overflow: hidden;
    min-height: 400px;
}

.final-image {
    flex: 1;
    /* Xóa bỏ min-height cố định nếu có để nó tự co dãn theo row */
}

.final-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-content {
    flex: 1.2;
    padding: 50px;
    color: #ffffff;
}

/* --- 4. TRẠNG THÁI MOBILE (RẤT QUAN TRỌNG) --- */
@media (max-width: 991px) {
    .theme-row, .theme-row.row-reverse, .theme-row-final {
        flex-direction: column; /* Xếp chồng trên mobile */
        padding: 20px;
    }

    .theme-image, .final-image {
        width: 100%;
        aspect-ratio: 16 / 9; /* Trên mobile ảnh ngang sẽ đẹp hơn */
        min-height: auto;
    }
    
    .theme-content, .final-content {
        padding: 20px 10px;
    }
}

/* --- 5. TINH CHỈNH TAG TUẦN --- */
.week-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ee5421;
    color: #fff;
    padding: 6px 15px;
    border-radius: 12px;
    font-weight: 700;
    z-index: 10;
    font-size: 0.9rem;
}
/* --- 1. SAFETY SECTION LAYOUT --- */
.safety-section {
    background-color: #fcfdfe; /* Màu nền hơi xanh nhẹ cực kỳ dịu mắt */
}

.safety-grid {
    display: grid;
    /* Chia 3 cột trên desktop, tự động co giãn */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* --- 2. SAFETY CARD DESIGN --- */
.safety-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Căn giữa để tạo sự trang trọng */
    text-align: center;
    border: 1px solid rgba(0, 0, 138, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.safety-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 138, 0.08);
    border-color: var(--orange-light);
}

/* --- 3. ICON BOX - ĐIỂM NHẤN --- */
.safety-icon-box {
    width: 80px;
    height: 80px;
    background: #f0f4ff; /* Màu nền icon dịu hơn */
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.safety-card:hover .safety-icon-box {
    background: var(--navy);
    transform: rotate(-5deg) scale(1.1);
}

/* --- 4. TEXT CONTENT --- */
.safety-content h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.safety-content p {
    font-size: 0.95rem;
    color: #5a6b80;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- 5. RESPONSIVE OPTIMIZATION --- */
@media (max-width: 1200px) {
    .safety-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cột cho máy tính bảng */
    }
}

@media (max-width: 767px) {
    .safety-grid {
        grid-template-columns: 1fr; /* 1 cột cho mobile */
        gap: 20px;
    }

    .safety-card {
        padding: 30px 20px;
        flex-direction: row; /* Chuyển sang hàng ngang trên mobile để tiết kiệm diện tích dọc */
        text-align: left;
        align-items: flex-start;
    }

    .safety-icon-box {
        width: 60px;
        height: 60px;
        min-width: 60px; /* Tránh icon bị co lại */
        font-size: 1.8rem;
        margin-bottom: 0;
        margin-right: 20px;
    }

    .safety-content h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
}

/* --- 6. EXTRA DECORATION (Tùy chọn) --- */
/* Thêm một đường kẻ nhỏ dưới tiêu đề khi hover */
.safety-content h4::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--orange);
    margin: 8px auto 0;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.safety-card:hover h4::after {
    width: 40px;
}

@media (max-width: 767px) {
    .safety-card:hover h4::after {
        margin-left: 0; /* Căn lề trái đường kẻ trên mobile */
    }
}
/* --- TIMELINE OVERVIEW --- */
.timeline-overview {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}

.timeline-item {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 138, 0.05);
    border-top: 5px solid #e2e8f0;
    transition: all 0.3s ease;
}

.timeline-item.active, .timeline-item:hover {
    border-top-color: var(--orange);
    transform: translateY(-5px);
}

.time-box strong {
    display: block;
    font-size: 1.8rem;
    color: var(--navy);
    line-height: 1;
}

.time-box span {
    font-size: 0.8rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-desc { margin-top: 15px; }

.tag-label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 2px;
}
.tag-label.pink { background: #fff1f2; color: #e11d48; }
.tag-label.gray { background: #f1f5f9; color: #475569; }

/* --- TIS CUSTOM TABLE --- */
.table-responsive {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 138, 0.1);
}

.tis-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 800px;
}

.tis-table th {
    background: var(--navy);
    color: #fff;
    padding: 20px;
    text-align: center;
    font-weight: 700;
}

.tis-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #edf2f7;
    font-size: 0.9rem;
    color: #4a5568;
}

.break-row td, .lunch-row td {
    background: #f8fafc;
    font-weight: 800;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Mobile Timeline */
@media (max-width: 991px) {
    .timeline-overview { flex-direction: column; }
    .timeline-item { border-top: 0; border-left: 5px solid #e2e8f0; }
    .timeline-item.active { border-left-color: var(--orange); }
}
/* --- PRICING GRID --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card.highlighted {
    border: 2px solid var(--orange);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(238, 84, 33, 0.15);
    position: relative;
}

.pricing-card.highlighted::before {
    content: "POPULAR";
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--orange);
    color: #fff;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 800;
}

.category-label {
    color: var(--orange);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.class-title {
    font-size: 1.8rem;
    margin: 10px 0 30px;
    color: var(--navy);
}

/* --- PRICE DETAILS --- */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.price-row.original { color: #94a3b8; text-decoration: line-through; }
.price-row strong { font-size: 1.2rem; color: var(--navy); }
.price-row.discount.orange strong { color: var(--orange); font-size: 1.5rem; }

.btn-price {
    display: block;
    text-align: center;
    background: var(--navy);
    color: #fff;
    padding: 18px;
    border-radius: 50px;
    margin-top: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pricing-card.highlighted .btn-price { background: var(--orange); }
.btn-price:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); color: #fff; }

/* --- INCLUDED SERVICES --- */
.included-services {
    background: #f8fafc;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.service-item {
    font-weight: 600;
    color: #475569;
    text-align: left;
    padding: 10px 20px;
    background: #fff;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .pricing-card.highlighted { transform: scale(1); }
    .pricing-grid { gap: 20px; }
}