         /* CSS RESET & VARIABLES */
        :root {
            --primary: #0b2545; /* Xanh dương đậm chính thống của Viện */
            --primary-dark: #081c33;
            --primary-light: #f0f5fa; /* Xanh dương nhạt */
            --secondary: #009340; /* Màu nhấn Xanh lá cây chính thống từ Logo Viện */
            --secondary-light: #e8f5e9;
            --yellow: #f1c40f; /* Vàng tươi điểm xuyết từ logo */
            --yellow-text: #d35400; /* Vàng hổ phách đậm hơn dùng cho chữ */
            --accent-green: #2ecc71; /* Xanh lá sáng làm điểm nhấn phụ */
            --dark: #0b2545; /* Slate Dark tạo uy tín */
            --dark-gray: #4b5563;
            --light-gray: #f9fafb;
            --border-color: #e5e7eb;
            --white: #ffffff;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
            --font-primary: 'Inter', Arial, Helvetica, sans-serif;
            --font-title: 'Be Vietnam Pro', Arial, Helvetica, sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            color: var(--dark);
            background-color: var(--white);
            line-height: 1.8;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            position: relative;
        }

        /* Logo in chìm toàn trang (Watermark) */
        body::before {
            content: "";
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            max-width: 90vw;
            max-height: 90vh;
            background-image: url('../../d9a4692cf49f590fcbcfec3caae40fda/Nội dung Web/ISAEE-Logo__1_-removebg-preview.png');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.022; /* Điều chỉnh độ mờ khéo léo để phảng phất mờ ảo */
            pointer-events: none;
            z-index: -1;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            /* Tăng chất lượng render ảnh trên màn hình Retina/HiDPI */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        /* UTILITIES */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section {
            padding: 6rem 0;
            scroll-margin-top: 132px; /* keep section-eyebrow/title clear of the fixed topbar+header when jumped to via nav anchors */
        }

        .section-bg {
            background-color: var(--light-gray);
        }

        .section-title {
            font-family: var(--font-title);
            font-size: 2.25rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3.5rem;
            color: var(--dark);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            margin: 0.75rem auto 0;
            border-radius: 2px;
        }

        .text-primary {
            color: var(--primary);
        }

        /* Section eyebrow label */
        .section-eyebrow {
            display: block;
            text-align: center;
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 0.75rem;
        }

        /* Section subtitle */
        .section-subtitle {
            text-align: center;
            color: var(--dark-gray);
            font-size: 1.05rem;
            max-width: 680px;
            margin: -2rem auto 3rem;
            line-height: 1.65;
            word-break: keep-all;
        }

        /* ---- STATS BAR ---- */
        .stats-bar {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
            padding: 2.75rem 0;
            border-top: 3px solid var(--secondary);
            border-bottom: 3px solid var(--secondary);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
            align-items: center;
            gap: 0;
        }

        .stat-item {
            text-align: center;
            padding: 0 1.5rem;
        }

        .stat-number {
            font-family: var(--font-title);
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--secondary);
            line-height: 1.1;
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.25rem;
        }

        .stat-unit {
            font-size: 1rem;
            font-weight: 700;
            color: rgba(255,255,255,0.7);
        }

        .stat-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.75);
            margin-top: 0.4rem;
            font-weight: 500;
            line-height: 1.4;
        }

        .stat-divider {
            width: 1px;
            height: 60px;
            background: rgba(255,255,255,0.15);
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
            .stat-divider {
                display: none;
            }
            .stat-number {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.25rem;
            }
            .stat-number {
                font-size: 1.6rem;
            }
        }

        /* ---- BENEFIT CARDS (redesigned) ---- */
        .benefit-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .benefit-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem 1.25rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: var(--transition);
        }

        .benefit-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .benefit-card:hover::before {
            opacity: 1;
        }

        .benefit-card-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            transition: var(--transition);
        }

        .benefit-icon-svg {
            width: 28px;
            height: 28px;
            color: var(--primary);
        }

        .benefit-card:hover .benefit-card-icon {
            background: var(--primary);
        }

        .benefit-card:hover .benefit-icon-svg {
            color: var(--white);
        }

        .benefit-card-title {
            font-family: var(--font-title);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.75rem;
            line-height: 1.35;
            word-break: keep-all;
        }

        .benefit-card-desc {
            font-size: 0.9rem;
            color: var(--dark-gray);
            line-height: 1.6;
        }

        /* Infographic block */
        .benefit-infographic {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }

        .benefit-infographic-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--dark-gray);
            border-bottom: 1px solid var(--border-color);
            background: var(--light-gray);
        }

        .benefit-infographic-label svg {
            color: var(--primary);
            flex-shrink: 0;
        }

        .benefit-infographic-img {
            width: 100%;
            height: auto;
            display: block;
            cursor: zoom-in;
            transition: var(--transition);
        }

        .benefit-infographic-img:hover {
            opacity: 0.95;
            transform: scale(1.005);
        }

        @media (max-width: 1024px) {
            .benefit-cards-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 600px) {
            .benefit-cards-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ---- CONDITIONS REDESIGN ---- */
        .conditions-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: start;
        }

        .conditions-group-title {
            font-family: var(--font-title);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .conditions-group-icon {
            font-size: 1.3rem;
        }

        .criteria-cards-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .criteria-card {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
            background: var(--white);
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .criteria-card:hover {
            border-color: var(--primary);
            transform: translateX(4px);
        }

        .criteria-number {
            font-family: var(--font-title);
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary-light);
            line-height: 1;
            min-width: 44px;
            -webkit-text-stroke: 2px var(--primary);
        }

        .criteria-title {
            font-family: var(--font-title);
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 0.35rem;
        }

        .criteria-desc {
            font-size: 0.9rem;
            color: var(--dark-gray);
            line-height: 1.55;
        }

        .lang-groups {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .lang-group {
            background: var(--white);
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            border: 2px solid var(--border-color);
            transition: var(--transition);
        }

        .lang-group--active {
            border-color: var(--primary);
            background: var(--primary-light);
        }

        .lang-group-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 0.975rem;
            color: var(--dark);
        }

        .lang-group-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--dark-gray);
            flex-shrink: 0;
        }

        .lang-group--active .lang-group-dot {
            background: var(--primary);
        }

        .lang-group--active .lang-group-header {
            color: var(--primary-dark);
        }

        .lang-group-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            padding-left: 1.5rem;
        }

        .lang-group-list li {
            font-size: 0.875rem;
            color: var(--dark-gray);
            line-height: 1.55;
            position: relative;
        }

        .lang-group-list li::before {
            content: '✓';
            position: absolute;
            left: -1.25rem;
            color: var(--primary);
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .conditions-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }



        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            font-family: var(--font-title);
            font-size: 1.05rem;
            font-weight: 700;
            border-radius: 9999px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--secondary), #007633);
            color: var(--white);
            box-shadow: 0 10px 20px rgba(0, 147, 64, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 25px rgba(0, 147, 64, 0.3);
            filter: brightness(1.1);
        }

        .btn-secondary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            box-shadow: 0 10px 20px rgba(11, 37, 69, 0.2);
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 25px rgba(11, 37, 69, 0.3);
            filter: brightness(1.1);
        }

        /* TOPBAR */
        .topbar {
            background-color: var(--dark);
            color: rgba(255,255,255,0.85);
            font-size: 0.8rem;
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 2px solid var(--primary);
            position: relative;
            z-index: 1001;
        }

        .topbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            height: auto;
        }

        .topbar-left {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .topbar-right {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-shrink: 0;
        }

        .topbar-item {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            white-space: nowrap;
        }

        .topbar-item svg {
            color: var(--secondary);
            flex-shrink: 0;
        }

        .topbar-link {
            color: var(--secondary);
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
        }

        .topbar-link:hover {
            color: #fff;
        }

        .topbar-divider {
            color: rgba(255,255,255,0.25);
        }

        .topbar-counselor strong {
            color: var(--secondary);
        }

        @media (max-width: 768px) {
            .topbar .container {
                flex-direction: column;
                gap: 0.4rem;
                align-items: center;
                text-align: center;
            }
            .topbar-left {
                justify-content: center;
                width: 100%;
            }
            .topbar-right {
                display: flex;
                justify-content: center;
                width: 100%;
            }
            .topbar-divider:last-of-type {
                display: none;
            }
        }
        @media (max-width: 480px) {
            .topbar {
                font-size: 0.72rem;
                padding: 0.6rem 0;
            }
            .topbar-left {
                flex-direction: column;
                gap: 0.35rem;
                align-items: center;
                width: 100%;
            }
            .topbar-divider {
                display: none;
            }
            .topbar-right {
                margin-top: 0.15rem;
            }
        }

        /* HEADER WRAPPER */
        .main-header-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        }

        /* HEADER */
        .header {
            background-color: rgba(255, 255, 255, 0.95);
            position: relative;
            width: 100%;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            max-width: 1360px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo {
            height: 60px;
            width: auto;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-title {
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--primary-dark);
            line-height: 1.2;
        }

        .logo-subtitle {
            font-size: 0.68rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--dark-gray);
            font-weight: 600;
            white-space: nowrap;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 1.1rem;
        }

        .nav-link {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--dark-gray);
            position: relative;
            padding: 0.5rem 0;
            white-space: nowrap;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            border: none;
            background: none;
            padding: 0.5rem;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--dark);
            margin: 5px 0;
            border-radius: 2px;
            transition: var(--transition);
        }

        /* Animate hamburger → X when menu is open */
        .hamburger.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* Header CTA – full-width on mobile inside open nav */
        @media (max-width: 768px) {
            .header-cta {
                display: block;
                width: 100%;
                text-align: center;
                margin-top: 1rem;
                padding: 0.875rem 1.5rem !important;
                font-size: 1rem !important;
                border-radius: 12px !important;
            }
        }

        /* HERO BANNER SECTION (NEW) */
        .hero-banner {
            padding-top: 176px; /* topbar(40px) + header(80px) + buffer */
            padding-bottom: 6rem;
            background: radial-gradient(circle at 10% 20%, rgba(240, 245, 250, 0.6) 0%, rgba(255, 255, 255, 0.95) 90%);
            position: relative;
            overflow: hidden;
        }

        .hero-banner-grid {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-banner-content {
            max-width: 760px;
        }

        .hero-banner-logos {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            margin-bottom: 2rem;
        }

        .hero-banner-logo-img {
            height: 60px;
            width: auto;
            object-fit: contain;
        }

        .hero-banner-logo-divider {
            width: 1px;
            height: 40px;
            background-color: var(--border-color);
        }

        .hero-banner-partner {
            display: flex;
            flex-direction: column;
        }

        .partner-org-tag {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--secondary);
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .partner-org-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--primary);
        }

        .hero-banner-title {
            font-family: var(--font-title);
            font-size: 2.15rem; /* slightly smaller to fit the expanded image grid layout perfectly */
            font-weight: 900;
            line-height: 1.35;
            color: var(--primary);
            margin-bottom: 1.75rem;
            letter-spacing: -0.5px;
        }

        .highlight-text-accent {
            color: var(--secondary);
            font-weight: 900;
        }

        .hero-banner-subtitle {
            font-size: 1.05rem;
            color: var(--dark-gray);
            margin-bottom: 2.5rem;
            line-height: 1.7;
            font-weight: 500;
        }

        .hero-banner-buttons {
            display: flex;
            gap: 1.25rem;
            align-items: center;
        }

        .hero-banner-graphics {
            position: relative;
            width: 100%;
        }

        .hero-banner-single-img {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 4px solid var(--white);
            transition: var(--transition);
            width: 100%;
        }

        .hero-banner-single-img:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 35px rgba(11, 37, 69, 0.15);
        }

        .hero-single-banner-img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            display: block;
        }

        /* VALUES / DIFFERENCES */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .value-card {
            background-color: var(--white);
            border-radius: 24px;
            padding: 3rem 2.5rem;
            box-shadow: var(--shadow);
            border: 1px solid rgba(0, 0, 0, 0.02);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: var(--transition);
        }

        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .value-card:hover::before {
            opacity: 1;
        }

        .value-icon {
            width: 64px;
            height: 64px;
            border-radius: 20px;
            background-color: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin-bottom: 2rem;
            transition: var(--transition);
        }

        .value-card:hover .value-icon {
            background-color: var(--primary);
            color: var(--white);
            transform: rotate(5deg);
        }

        .value-title {
            font-family: var(--font-title);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .value-desc {
            color: var(--dark-gray);
            font-size: 0.975rem;
            line-height: 1.6;
        }

        /* ABOUT SECTION */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .about-image {
            width: 100%;
            height: 420px;          /* Chiều cao cố định, không dùng aspect-ratio */
            object-fit: cover;
            object-position: center center;
            image-rendering: -webkit-optimize-contrast;
        }

        .about-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: var(--dark);
            color: var(--white);
            padding: 0.4rem 1rem;
            font-size: 0.8rem;
            font-weight: 700;
            border-radius: 8px;
            text-transform: uppercase;
        }

        .about-title {
            font-family: var(--font-title);
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .about-text {
            color: var(--dark-gray);
            font-size: 1.025rem;
            margin-bottom: 2rem;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .partner-card {
            background-color: var(--light-gray);
            padding: 1.5rem;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .partner-name {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--primary-dark);
        }

        .partner-desc {
            font-size: 0.875rem;
            color: var(--dark-gray);
        }

        /* DETAILED INFO & ACCORDION */
        .info-tab-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .info-tabs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 3rem;
            background: var(--light-gray);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 0.5rem;
        }

        .tab-btn {
            flex: 1;
            background: none;
            border: none;
            padding: 0.85rem 1.5rem;
            font-family: var(--font-title);
            font-size: 0.95rem;
            font-weight: 700;
            line-height: 1.35;
            color: var(--dark-gray);
            cursor: pointer;
            border-radius: 12px;
            transition: var(--transition);
        }

        .tab-btn:hover {
            color: var(--primary);
            background-color: rgba(255, 255, 255, 0.7);
        }

        .tab-btn.active {
            color: var(--white);
            background-color: var(--primary);
            box-shadow: 0 8px 16px rgba(0, 102, 255, 0.25);
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        .info-card-layout {
            background-color: var(--white);
            border-radius: 24px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1.4fr; /* cho cột ảnh rộng hơn để hiển thị gần với độ phân giải gốc */
        }

        .info-card-text {
            padding: 3rem;
        }

        .info-card-image-container {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 520px;     /* tăng chiều cao để ảnh render gần với kích thước gốc hơn */
            background-color: #fff;
            padding: 1rem;         /* padding nhỏ để tránh sát viền */
        }

        .info-card-image {
            width: 100%;           /* ảnh chiếm toàn bộ chiều rộng cột → gần phân giải gốc hơn */
            height: 100%;
            object-fit: contain;   /* giữ nguyên tỷ lệ, không cắt xén */
            object-position: center;
            cursor: zoom-in;
            transition: var(--transition);
            /* image-rendering: auto là tốt nhất cho ảnh thực (browser dùng bicubic interpolation) */
            image-rendering: auto;
        }

        .info-card-image:hover {
            transform: scale(1.02);
        }

        .info-list {
            margin-top: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .info-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .info-item-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .info-item-content strong {
            display: block;
            color: var(--dark);
            font-size: 1.05rem;
            margin-bottom: 0.25rem;
        }

        .info-item-content span {
            color: var(--dark-gray);
            font-size: 0.95rem;
        }

        /* CONDITIONS SECTION */
        .conditions-box {
            background-color: var(--white);
            border-radius: 24px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            padding: 4rem;
            margin-top: 2rem;
        }

        .conditions-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .cond-column-title {
            font-family: var(--font-title);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .cond-column-title svg {
            color: var(--secondary);
        }

        .cond-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .cond-item {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
        }

        .cond-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background-color: #fff9e6;
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.9rem;
            font-weight: bold;
        }

        .cond-text {
            color: var(--dark-gray);
            font-size: 1rem;
        }

        .cond-text strong {
            color: var(--dark);
        }

        .cond-notice {
            margin-top: 3.5rem;
            background-color: var(--primary-light);
            border-left: 5px solid var(--primary);
            padding: 1.5rem 2rem;
            border-radius: 8px;
            font-size: 0.975rem;
            color: var(--primary-dark);
            font-weight: 500;
        }

        /* TIMELINE SECTION */
        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background-color: var(--primary-light);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            width: 50%;
            padding: 2rem 3rem;
            box-sizing: border-box;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
            text-align: left;
        }

        .timeline-dot {
            position: absolute;
            top: 2.5rem;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background-color: var(--white);
            border: 5px solid var(--primary);
            box-shadow: var(--shadow);
            z-index: 1;
        }

        .timeline-item:nth-child(odd) .timeline-dot {
            right: -14px;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            left: -14px;
        }

        .timeline-content {
            background-color: var(--white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .timeline-item:hover .timeline-content {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .timeline-step {
            font-family: var(--font-title);
            font-size: 0.85rem;
            font-weight: 800;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .timeline-time {
            display: inline-block;
            background-color: var(--secondary-light);
            color: #b38600;
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 0.85rem;
            padding: 0.25rem 0.75rem;
            border-radius: 6px;
            margin-bottom: 1rem;
        }

        .timeline-title {
            font-family: var(--font-title);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--dark);
            word-break: keep-all;
        }

        .timeline-desc {
            color: var(--dark-gray);
            font-size: 0.95rem;
        }

        /* REGISTRATION FORM SECTION */
        .registration {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .registration::before {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 450px;
            height: 450px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.02);
        }

        .registration .section-title {
            color: var(--white);
        }

        .registration-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .reg-text-content h3 {
            font-family: var(--font-title);
            font-size: 2.25rem;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        .reg-text-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
        }

        .reg-contacts {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .reg-contact-card {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.25rem 1.75rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
        }

        .reg-contact-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .reg-contact-info span {
            display: block;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .reg-contact-info strong {
            font-family: var(--font-title);
            font-size: 1.15rem;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .reg-contact-name {
            display: inline-block;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            margin-top: 0.15rem;
        }

        .reg-form-container {
            background-color: var(--white);
            border-radius: 30px;
            padding: 3.5rem;
            box-shadow: var(--shadow-lg);
            color: var(--dark);
        }

        .reg-form-title {
            font-family: var(--font-title);
            font-size: 1.75rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 2rem;
            color: var(--dark);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-full-width {
            grid-column: span 2;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-label {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--dark-gray);
        }

        .form-input {
            width: 100%;
            padding: 1rem 1.25rem;
            border-radius: 12px;
            border: 1.5px solid var(--border-color);
            font-family: var(--font-primary);
            font-size: 1rem;
            transition: var(--transition);
            background-color: var(--light-gray);
            height: 52px; /* Ensure optimal tap height on touchscreens */
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            background-color: var(--white);
            box-shadow: 0 0 0 3px rgba(0, 147, 64, 0.1);
        }

        /* Custom red border validation style */
        .form-input.invalid-field {
            border-color: #c0392b !important;
            background-color: #fdf2f2 !important;
            box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.2) !important;
        }

        .form-submit-btn {
            width: 100%;
            margin-top: 2rem;
            padding: 1.15rem 1.5rem;
            font-size: 1.15rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            border-radius: 14px;
            text-transform: uppercase;
            white-space: nowrap; /* prevent text wrapping/dropping */
        }

        /* COLLAPSIBLE FORM SECTIONS (registration form, 3 parts) */
        .form-section {
            border: 1px solid var(--border-color);
            border-radius: 14px;
            margin-bottom: 1.25rem;
            overflow: hidden;
            transition: var(--transition);
        }

        .form-section[open] {
            border-color: var(--primary);
        }

        .form-section-header {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            padding: 1.1rem 1.25rem;
            background: var(--light-gray);
            cursor: pointer;
            user-select: none;
            list-style: none;
            transition: var(--transition);
        }

        .form-section-header::-webkit-details-marker {
            display: none;
        }

        .form-section-header::marker {
            display: none;
        }

        .form-section-header:hover {
            background: var(--primary-light);
        }

        .form-section[open] .form-section-header {
            background: var(--primary-light);
            border-bottom: 1px solid var(--border-color);
        }

        .form-section-number {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .form-section-title {
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 1rem;
            color: var(--dark);
            flex-grow: 1;
        }

        .form-section[open] .qa-icon {
            transform: rotate(45deg);
        }

        .form-section[open] .qa-icon::before,
        .form-section[open] .qa-icon::after {
            background: var(--primary-dark);
        }

        .form-section-body {
            padding: 1.5rem 1.25rem 0.5rem;
        }

        @media (max-width: 480px) {
            .form-section-header {
                padding: 1rem;
            }
            .form-section-body {
                padding: 1.25rem 1rem 0.25rem;
            }
        }

        /* FLOATING UTILITIES */
        @keyframes ripple-breath {
            0% {
                box-shadow: 0 0 0 0 rgba(11, 37, 69, 0.2), 0 10px 25px rgba(0,0,0,0.15);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(11, 37, 69, 0), 0 0 0 12px rgba(11, 37, 69, 0.1), 0 10px 25px rgba(0,0,0,0.15);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(11, 37, 69, 0.2), 0 10px 25px rgba(0,0,0,0.15);
            }
        }

        .floating-menu {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            z-index: 999;
        }

        .float-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            animation: ripple-breath 3s infinite ease-in-out;
        }

        .float-btn:hover {
            transform: scale(1.1) translateY(-3px);
            animation: none;
            box-shadow: 0 15px 30px rgba(0,0,0,0.25);
        }

        .float-phone {
            background-color: #2ecc71; /* Xanh lá */
        }

        .float-zalo {
            background-color: #0068ff; /* Xanh biển */
            font-family: var(--font-title);
            font-weight: 900;
            font-size: 1.1rem;
        }

        .float-email {
            background-color: #8b1e1e; /* Đỏ trầm */
        }

        .float-tooltip {
            position: absolute;
            right: 70px;
            background-color: var(--dark);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transform: translateX(10px);
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .float-btn:hover .float-tooltip {
            opacity: 1;
            transform: translateX(0);
        }

        /* MODALS & LIGHTBOX */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: var(--white);
            border-radius: 30px;
            max-width: 600px;
            width: 100%;
            padding: 3.5rem;
            text-align: center;
            box-shadow: var(--shadow-lg);
            position: relative;
            animation: modalSlide 0.4s ease;
        }

        .modal-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-gray);
            transition: var(--transition);
        }

        .modal-close-btn:hover {
            color: var(--primary-dark);
            transform: scale(1.1);
        }

        .success-icon-wrapper {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin: 0 auto 2rem;
        }

        .modal-title {
            font-family: var(--font-title);
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .modal-desc {
            color: var(--dark-gray);
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        /* Lightbox modal for infographics */
        .lightbox-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 10001;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .lightbox-content-container {
            position: relative;
            max-width: 90%;
            max-height: 90vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        }

        .lightbox-close {
            position: absolute;
            top: -45px;
            right: 0;
            background: none;
            border: none;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .lightbox-close:hover {
            transform: scale(1.1);
        }

        /* FOOTER */
        .footer {
            background-color: var(--dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 5rem 0 2rem;
            border-top: 5px solid var(--primary);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-logo-area {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-logo-title {
            color: var(--white);
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 1.4rem;
        }

        .footer-about {
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .footer-links-title {
            color: var(--white);
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 1.75rem;
            position: relative;
        }

        .footer-links-title::after {
            content: '';
            display: block;
            width: 30px;
            height: 2px;
            background-color: var(--secondary);
            margin-top: 0.5rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-link-item a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .footer-contact-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            font-size: 0.925rem;
        }

        .footer-contact-item {
            display: flex;
            gap: 0.75rem;
        }

        .footer-contact-icon {
            color: var(--secondary);
            flex-shrink: 0;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.85rem;
        }

        /* NEWS SECTION SLIDER (3 cards visible, slides to reveal all articles) */
        .news-slider {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            margin-top: 1rem;
        }

        .news-slider-viewport {
            overflow: hidden;
            flex: 1;
            min-width: 0;
        }

        .news-slider-track {
            display: flex;
            gap: 2rem;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .news-slide {
            flex: 0 0 calc((100% - 4rem) / 3);
            max-width: calc((100% - 4rem) / 3);
        }

        .news-slider-arrow {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--white);
            color: var(--primary);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .news-slider-arrow:hover:not(:disabled) {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }

        .news-slider-arrow:disabled {
            opacity: 0.35;
            cursor: default;
            pointer-events: none;
        }

        .news-slider-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.6rem;
            margin-top: 2rem;
        }

        .news-slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(11, 37, 69, 0.15);
            border: none;
            padding: 0;
            cursor: pointer;
            transition: var(--transition);
        }

        .news-slider-dot.active {
            background: var(--secondary);
            width: 26px;
            border-radius: 6px;
        }

        .news-card {
            background-color: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .news-img-wrapper {
            position: relative;
            padding-top: 60%; /* 5:3 ratio */
            overflow: hidden;
        }

        .news-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .news-card:hover .news-img {
            transform: scale(1.05);
        }

        .news-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .news-meta {
            font-size: 0.85rem;
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .news-title {
            font-family: var(--font-title);
            font-size: 1.15rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 0.75rem;
            color: var(--dark);
        }

        .news-desc {
            color: var(--dark-gray);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .news-link {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: auto;
        }

        .news-link:hover {
            color: var(--primary-dark);
        }

        /* KEYFRAMES */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes modalSlide {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* ============================================================
           RESPONSIVE MEDIA QUERIES — COMPREHENSIVE MOBILE OPTIMIZATION
           ============================================================ */

        /* TABLET: 768px – 1024px */
        @media (max-width: 1024px) {
            .container {
                padding: 0 1.25rem;
            }
            .section {
                padding: 5rem 0;
            }
            .section-title {
                font-size: 1.9rem;
                margin-bottom: 2.75rem;
            }
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }
            .hero-content {
                max-width: 100%;
                margin: 0 auto;
            }
            .hero-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }
            .hero-image-wrapper {
                max-width: 480px;
                margin: 0 auto;
            }
            .values-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.75rem;
            }
            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .info-card-layout {
                grid-template-columns: 1fr;
            }
            .info-card-image-container {
                min-height: 300px;
            }
            .registration-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .reg-text-content h3 {
                font-size: 1.85rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
            .news-slide {
                flex-basis: calc((100% - 2rem) / 2);
                max-width: calc((100% - 2rem) / 2);
            }
            .conditions-box {
                padding: 3rem;
            }
        }

        /* MOBILE: up to 768px */
        @media (max-width: 768px) {
            /* --- BASE --- */
            .container {
                padding: 0 1rem;
            }
            .section {
                padding: 3.5rem 0;
                scroll-margin-top: 145px;
            }
            .section-title {
                font-size: 1.5rem;
                margin-bottom: 2rem;
            }

            /* --- HEADER (Moved to 1100px breakpoint) --- */

            /* --- HERO --- */
            .hero {
                padding-top: 155px; /* Increased from 124px to prevent overlapping header */
                padding-bottom: 4rem;
            }

            /* --- STATS BAR --- */
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .stat-item {
                padding: 0 0.5rem;
            }
            .hero-title {
                font-size: 1.9rem;
                line-height: 1.4;
            }
            .hero-description {
                font-size: 1rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
                gap: 0.875rem;
            }
            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
                padding: 0.875rem 1.5rem;
                font-size: 0.975rem;
            }
            .hero-image {
                height: auto;
            }
            .hero-float-card {
                bottom: -15px;
                left: -10px;
                padding: 0.875rem 1.25rem;
                gap: 0.75rem;
                border-radius: 14px;
            }
            .hero-float-num {
                font-size: 1.1rem;
            }

            /* --- BENEFITS / VALUES --- */
            .values-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
            .value-card {
                padding: 2rem 1.5rem;
                border-radius: 18px;
            }
            .value-icon {
                width: 52px;
                height: 52px;
                margin-bottom: 1.25rem;
                font-size: 1.5rem;
            }
            .value-title {
                font-size: 1.2rem;
            }

            /* --- ABOUT --- */
            .about-image {
                height: 260px;
            }
            .about-title {
                font-size: 1.5rem;
            }
            .partners-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            /* --- DOCUMENTS / TABS --- */
            .info-tabs {
                flex-wrap: wrap;
                gap: 0.5rem;
                margin-bottom: 2rem;
            }
            .tab-btn {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
                flex: 1;
                text-align: center;
            }
            .info-card-layout {
                grid-template-columns: 1fr;
            }
            .info-card-text {
                padding: 1.5rem;
            }
            .info-card-image-container {
                min-height: 220px;
                padding: 0.5rem;
            }

            /* --- CONDITIONS --- */
            .conditions-box {
                padding: 1.5rem;
                border-radius: 16px;
            }
            .conditions-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .cond-column-title {
                font-size: 1.2rem;
            }
            .cond-notice {
                margin-top: 2rem;
                padding: 1rem 1.25rem;
                font-size: 0.9rem;
            }

            /* --- TIMELINE --- */
            .timeline::before {
                left: 20px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 60px;
                padding-right: 0;
                padding-top: 1.25rem;
                padding-bottom: 1.25rem;
                text-align: left !important;
            }
            .timeline-item:nth-child(even) {
                left: 0%;
            }
            .timeline-item::after {
                left: 20px;
            }
            .timeline-dot {
                left: 6px !important;
                right: auto !important;
                top: 1.75rem;
                width: 22px;
                height: 22px;
            }
            .timeline-content {
                padding: 1.25rem;
                border-radius: 14px;
            }
            .timeline-title {
                font-size: 1.1rem;
            }

            /* --- NEWS --- */
            .news-slider {
                gap: 0.5rem;
            }
            .news-slider-track {
                gap: 1.25rem;
            }
            .news-slide {
                flex-basis: 100%;
                max-width: 100%;
            }
            .news-slider-arrow {
                width: 40px;
                height: 40px;
            }
            .news-content {
                padding: 1.25rem;
            }

            /* --- REGISTRATION FORM --- */
            .registration-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .reg-text-content h3 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }
            .reg-text-content p {
                font-size: 0.975rem;
            }
            .reg-contact-card {
                padding: 1rem;
                gap: 1rem;
            }
            .reg-contact-info strong {
                font-size: 0.95rem;
                word-break: break-word;
            }
            .reg-form-container {
                padding: 1.5rem;
                border-radius: 20px;
            }
            .reg-form-title {
                font-size: 1.35rem;
            }
            .form-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .form-full-width {
                grid-column: span 1;
            }
            .form-submit-btn {
                font-size: 1rem;
                padding: 0.875rem;
                margin-top: 1.5rem;
                white-space: nowrap;
            }

            /* --- FOOTER --- */
            .footer {
                padding: 3rem 0 1.5rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                margin-bottom: 2.5rem;
            }
            .footer-links-title {
                margin-bottom: 1.25rem;
                font-size: 1rem;
            }

            /* --- FLOATING MENU --- */
            .floating-menu {
                bottom: 80px;
                right: 14px;
                gap: 0.6rem;
            }
            .float-btn {
                width: 48px;
                height: 48px;
            }
            .float-zalo {
                font-size: 0.9rem;
            }
            .float-tooltip {
                display: none; /* hide tooltips on mobile — space is too tight */
            }

            /* --- MODAL --- */
            .modal-content {
                padding: 2rem 1.5rem;
                border-radius: 20px;
            }
            .modal-title {
                font-size: 1.35rem;
            }
        }

        /* SMALL MOBILE: up to 480px */
        @media (max-width: 480px) {
            .container {
                padding: 0 0.875rem;
            }
            .hero {
                padding-top: 175px; /* Extra height to offset the double-line mobile topbar */
            }
            .section {
                scroll-margin-top: 165px; /* offset the double-line mobile topbar */
            }
            .section-title {
                font-size: 1.3rem;
            }
            .hero-title {
                font-size: 1.6rem;
            }
            .hero-badge {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
            }
            .hero-image {
                height: auto;
            }
            .hero-float-card {
                left: 50%;
                transform: translateX(-50%);
                bottom: -15px;
                padding: 0.75rem 1.25rem;
                width: max-content;
                max-width: 90%;
            }
            .hero-float-num {
                font-size: 1rem;
            }
            .hero-float-desc {
                font-size: 0.65rem;
            }
            .btn {
                padding: 0.75rem 1.5rem;
                font-size: 0.95rem;
            }
            .value-card {
                padding: 1.5rem 1.25rem;
            }
            .criteria-card {
                padding: 1rem;
                gap: 1rem;
            }
            .criteria-number {
                font-size: 1.6rem;
                min-width: 32px;
            }
            .lang-group {
                padding: 1rem;
            }
            .reg-form-container {
                padding: 1.25rem 1rem;
            }
            .form-input {
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
            }
            .form-submit-btn {
                font-size: 0.8rem;
                padding: 0.95rem 0.5rem;
                white-space: nowrap;
            }
            .form-label {
                font-size: 0.85rem;
            }
            .cond-item {
                gap: 0.875rem;
            }
            .timeline-item {
                padding-left: 50px;
            }
            .timeline-content {
                padding: 1rem;
            }
            .tab-btn {
                font-size: 0.85rem;
                padding: 0.5rem 0.75rem;
            }
            .news-title {
                font-size: 1.05rem;
            }
        }

        /* HERO SLIDER STYLES */
        .hero {
            position: relative;
            overflow: hidden;
            padding-top: 176px;
            padding-bottom: 6rem;
            background: radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.05) 0%, rgba(255, 255, 255, 0.95) 90%);
        }

        .hero-slides-wrapper {
            position: relative;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr;
        }

        .hero-slide {
            grid-area: 1 / 1;
            width: 100%;
            transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .hero-slide.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        /* Slider arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.85);
            color: var(--primary);
            border: 1px solid var(--border-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: bold;
            box-shadow: var(--shadow);
            z-index: 10;
            transition: var(--transition);
        }

        .slider-arrow:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }

        .slider-arrow--prev {
            left: 2rem;
        }

        .slider-arrow--next {
            right: 2rem;
        }

        /* Slider dots */
        .slider-dots-container {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.75rem;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0, 102, 255, 0.2);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: var(--secondary);
            transform: scale(1.2);
            width: 28px;
            border-radius: 6px;
        }

        /* Watermark Background under text sections */
        .watermark-bg {
            position: relative;
            z-index: 1;
        }

        .watermark-bg::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 350px;
            height: 350px;
            background-image: url("../../d9a4692cf49f590fcbcfec3caae40fda/Nội%20dung%20Web/ISAEE-Logo__1_-removebg-preview.png");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.035;
            pointer-events: none;
            z-index: -1;
        }

        /* TRAINING ROADMAP */
        .roadmap-grid-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .roadmap-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            position: relative;
            transition: var(--transition);
            overflow: hidden;
        }

        .roadmap-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .roadmap-step {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 0.8rem;
            font-weight: 800;
            padding: 0.35rem 0.85rem;
            border-radius: 999px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1.25rem;
        }

        .roadmap-card-title {
            font-family: var(--font-title);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .roadmap-card-desc {
            font-size: 0.9rem;
            color: var(--dark-gray);
            line-height: 1.6;
        }

        /* SECTION HIGHLIGHT BANNER (closing accent for a section) */
        .highlight-banner {
            margin-top: 3rem;
            background: var(--white);
            border-radius: 16px;
            padding: 1.75rem 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 1.5rem;
            transition: var(--transition);
        }

        .highlight-banner:hover {
            box-shadow: var(--shadow-lg);
        }

        .highlight-banner-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .highlight-banner-text strong {
            display: block;
            font-family: var(--font-title);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.3rem;
        }

        .highlight-banner-text span {
            font-size: 0.9rem;
            color: var(--dark-gray);
            line-height: 1.55;
        }

        .highlight-banner--orange {
            border-left: 4px solid var(--secondary);
        }

        .highlight-banner--orange .highlight-banner-icon {
            background: var(--secondary-light);
            color: var(--secondary);
        }

        .highlight-banner--blue {
            border-left: 4px solid var(--primary);
        }

        .highlight-banner--blue .highlight-banner-icon {
            background: var(--primary-light);
            color: var(--primary);
        }

        @media (max-width: 600px) {
            .highlight-banner {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
                gap: 1rem;
            }
        }

        /* SINGAPORE CALENDAR */
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .calendar-year-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .calendar-year-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }

        .calendar-year-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 1.25rem 1.5rem;
            text-align: center;
        }

        .calendar-year-header h4 {
            font-family: var(--font-title);
            font-size: 1.1rem;
            font-weight: 800;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .calendar-stages-list {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .calendar-stage-row {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            border-left: 2px solid var(--secondary);
            padding-left: 1rem;
            position: relative;
        }

        .calendar-stage-time {
            font-size: 0.8rem;
            font-weight: 800;
            color: var(--secondary);
            text-transform: uppercase;
        }

        .calendar-stage-activity {
            font-size: 0.875rem;
            color: var(--dark-gray);
            line-height: 1.5;
        }

        /* Q&A ACCORDION */
        .qa-wrapper {
            max-width: 800px;
            margin: 0 auto;
            margin-top: 2.5rem;
        }

        .qa-list-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .qa-item {
            background: var(--white);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            margin-bottom: 0.5rem;
        }

        .qa-item[open] {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }

        .qa-question {
            padding: 1.25rem 1.5rem;
            font-family: var(--font-title);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            user-select: none;
            transition: var(--transition);
        }

        .qa-question:hover {
            color: var(--primary);
        }

        .qa-question::-webkit-details-marker {
            display: none;
        }

        .qa-question::marker {
            display: none;
        }

        .qa-icon {
            position: relative;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .qa-icon::before, .qa-icon::after {
            content: '';
            position: absolute;
            background: var(--primary);
            border-radius: 2px;
            transition: var(--transition);
        }

        .qa-icon::before {
            top: 9px;
            left: 2px;
            width: 16px;
            height: 2px;
        }

        .qa-icon::after {
            top: 2px;
            left: 9px;
            width: 2px;
            height: 16px;
        }

        .qa-item[open] .qa-question {
            border-bottom: 1px solid var(--border-color);
            background: var(--primary-light);
            color: var(--primary-dark);
        }

        .qa-item[open] .qa-icon {
            transform: rotate(45deg);
        }

        .qa-item[open] .qa-icon::before, .qa-item[open] .qa-icon::after {
            background: var(--primary-dark);
        }

        .qa-answer {
            padding: 1.5rem;
            font-size: 0.95rem;
            color: var(--dark-gray);
            line-height: 1.6;
            background: var(--white);
        }

        /* SMOOTH ACCORDION COLLAPSE (shared by Q&A and the registration form's sections).
           Native <details> normally snaps open/closed instantly, and browsers vary in how
           they hide non-summary content internally — so instead of relying on that, we
           explicitly force height:0 (collapsed) vs height:auto ([open], for first paint
           and no-JS baseline) ourselves. JS (see index.js initAccordionAnimations) animates
           this wrapper's height between 0 and its natural scrollHeight on toggle, then
           clears the inline style so these steady-state rules take back over. */
        details > .acc-body-wrapper {
            height: 0;
            overflow: hidden;
            transition: height 0.35s ease;
        }

        details[open] > .acc-body-wrapper {
            height: auto;
        }

        @media (max-width: 1024px) {
            .slider-arrow {
                display: none;
            }
            .calendar-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .roadmap-grid-wrapper {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        /* BRAND NEW COMPONENT STYLES & INTERACTIVE GLOW EFFECTS */
        
        /* Hero Details Improvements */
        .hero-badge-container {
            margin-bottom: 1.5rem;
        }

        .hero-badge {
            background-color: var(--primary-light);
            color: var(--primary-dark);
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 0.8rem;
            padding: 0.5rem 1.25rem;
            border-radius: 9999px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 1px solid rgba(0, 102, 255, 0.15);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--secondary);
            animation: pulse-dot 1.5s infinite;
        }

        @keyframes pulse-dot {
            0% { transform: scale(0.95); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 1; }
            100% { transform: scale(0.95); opacity: 0.5; }
        }

        /* Pulse Action Button */
        .btn-cta-pulse {
            background: linear-gradient(135deg, var(--secondary) 0%, #007633 100%) !important;
            color: var(--white) !important;
            box-shadow: 0 10px 20px rgba(0, 147, 64, 0.25);
            animation: cta-pulse-anim 2.5s infinite;
        }

        .btn-cta-pulse:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 147, 64, 0.4);
            filter: brightness(1.08);
        }

        @keyframes cta-pulse-anim {
            0% { box-shadow: 0 0 0 0 rgba(0, 147, 64, 0.5); }
            70% { box-shadow: 0 0 0 15px rgba(0, 147, 64, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 147, 64, 0); }
        }

        .btn-secondary-outline {
            background: transparent !important;
            color: var(--primary) !important;
            border: 2px solid var(--primary) !important;
            box-shadow: none !important;
            padding: 0.75rem 2rem;
            font-weight: 700;
            border-radius: 9999px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-secondary-outline:hover {
            background: var(--primary-light) !important;
            transform: translateY(-2px);
        }

        /* Float card glowing border */
        .hero-float-card {
            border: 1px solid rgba(255, 215, 0, 0.3) !important;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08), 0 0 15px rgba(0, 102, 255, 0.1) !important;
            animation: float-glowing 3s ease-in-out infinite alternate;
        }

        @keyframes float-glowing {
            0% { transform: translateY(0); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 0 5px rgba(0, 102, 255, 0.05); }
            100% { transform: translateY(-8px); box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12), 0 0 20px rgba(0, 102, 255, 0.15); }
        }

        /* 3-COLUMN DOCUMENTS TAB */
        .doc-columns-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .doc-stage-column {
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }

        .doc-stage-column:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }

        .doc-stage-card-header {
            background: var(--primary-light);
            color: var(--primary-dark);
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }

        .doc-stage-card-header h5 {
            font-family: var(--font-title);
            font-size: 1rem;
            font-weight: 800;
            margin: 0;
            text-transform: uppercase;
        }

        .doc-stage-card-body {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .doc-stage-desc {
            font-size: 0.85rem;
            color: var(--dark-gray);
            margin-bottom: 1.25rem;
            line-height: 1.5;
            font-weight: 500;
        }

        .doc-items-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .doc-items-list li {
            display: flex;
            gap: 0.75rem;
            align-items: flex-start;
        }

        .doc-check-icon {
            color: var(--accent-green);
            font-weight: 900;
            font-size: 0.95rem;
            flex-shrink: 0;
        }

        .doc-item-text {
            font-size: 0.875rem;
            color: var(--dark-gray);
            line-height: 1.45;
        }

        /* FINANCIAL COMPARISON TABLE */
        .comparison-summary-badge-container {
            display: flex;
            justify-content: center;
            margin-top: -2rem;
            margin-bottom: 3rem;
        }

        .comparison-summary-badge {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 0.875rem 2rem;
            border-radius: 9999px;
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 1.15rem;
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
            border: 2px solid rgba(255, 215, 0, 0.4);
            animation: pulse-border 2s infinite alternate;
        }

        @keyframes pulse-border {
            0% { border-color: rgba(255, 215, 0, 0.4); }
            100% { border-color: rgba(255, 215, 0, 1); box-shadow: 0 10px 25px rgba(0, 102, 255, 0.35); }
        }

        .comparison-grid-container {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .comparison-category-block {
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: var(--transition);
        }

        .comparison-category-block:hover {
            box-shadow: var(--shadow-lg);
            border-color: rgba(0, 102, 255, 0.3);
        }

        .comparison-category-title {
            background: var(--light-gray);
            padding: 1.25rem 2rem;
            margin: 0;
            font-family: var(--font-title);
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--dark);
            border-bottom: 2px solid var(--border-color);
            text-align: center;
            letter-spacing: 0.5px;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            table-layout: fixed;
        }

        .comparison-table th {
            padding: 1.25rem 2rem;
            font-family: var(--font-title);
            font-size: 0.95rem;
            font-weight: 800;
            text-align: left;
            border-bottom: 2px solid var(--border-color);
        }

        .th-singapore {
            background: var(--primary-light);
            color: var(--primary-dark);
            border-right: 1px solid var(--border-color);
        }

        .th-vietnam {
            background: #f9fafb;
            color: #4b5563;
        }

        .comparison-row {
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .comparison-row:last-child {
            border-bottom: none;
        }

        .comparison-row:hover {
            background-color: #f9fafb;
        }

        .col-singapore {
            padding: 1.5rem 2rem;
            border-right: 1px solid var(--border-color);
            vertical-align: top;
            width: 50%;
        }

        .col-vietnam {
            padding: 1.5rem 2rem;
            vertical-align: top;
            width: 50%;
        }

        .comparison-cell-content {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .comparison-bullet {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 900;
            flex-shrink: 0;
            line-height: 1;
            margin-top: 0.15rem;
        }

        .positive-bullet {
            background: #d1fae5;
            color: #065f46;
        }

        .negative-bullet {
            background: #f3f4f6;
            color: #4b5563;
        }

        .comparison-cell-text {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .comparison-cell-text strong {
            font-size: 0.95rem;
            color: var(--dark);
            font-weight: 700;
            line-height: 1.4;
        }

        .comparison-cell-text span {
            font-size: 0.875rem;
            color: var(--dark-gray);
            line-height: 1.45;
        }

        /* PREMIUM FOOTER NETWORK BRANCHES */
        .footer-top-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.8fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-links-area {
            display: flex;
            flex-direction: column;
        }

        .footer-support-area {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-support-desc {
            font-size: 0.85rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.65);
        }

        .footer-qr-wrapper {
            background-color: var(--white);
            padding: 0.65rem;
            border-radius: 12px;
            width: fit-content;
            box-shadow: var(--shadow);
            margin-bottom: 0.25rem;
        }

        .footer-qr-img {
            width: 120px;
            height: 120px;
            display: block;
            object-fit: contain;
        }

        .footer-download-btn-container {
            width: 100%;
        }

        .footer-download-btn {
            display: inline-block;
            width: 100%;
            text-align: center;
            background-color: var(--secondary) !important;
            color: var(--white) !important;
            font-size: 0.85rem !important;
            font-weight: 800 !important;
            padding: 0.8rem 0.75rem !important;
            border-radius: 10px !important;
            transition: var(--transition);
        }

        .footer-download-btn:hover {
            background-color: var(--primary) !important;
            transform: translateY(-2px);
        }

        .footer-branches-area {
            margin-top: 3rem;
        }

        .footer-branches-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .footer-branch-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 1.25rem;
            transition: var(--transition);
        }

        .footer-branch-item:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--secondary);
        }

        .footer-branch-name {
            font-family: var(--font-title);
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.5rem;
            border-left: 3px solid var(--secondary);
            padding-left: 0.5rem;
        }

        .footer-branch-address {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.45;
            margin-bottom: 0.35rem;
        }

        .footer-branch-phone {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-branch-phone strong {
            color: var(--secondary);
        }

        /* Media Queries for new items */
        @media (max-width: 1024px) {
            .doc-columns-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .footer-top-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .footer-branches-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-banner-title {
                font-size: 2rem !important;
            }
        }

        @media (max-width: 768px) {
            .comparison-table th, .col-singapore, .col-vietnam {
                padding: 1rem 1.25rem;
            }
            .footer-branches-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
            .comparison-summary-badge {
                font-size: 0.95rem;
                padding: 0.75rem 1.25rem;
            }
            .hero-banner-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .hero-banner-title {
                font-size: 1.75rem !important;
            }
            .hero-banner-subtitle {
                font-size: 0.95rem;
            }
            .hero-banner-buttons {
                flex-direction: column;
                width: 100%;
                gap: 1rem;
            }
            .hero-banner-buttons .btn {
                width: 100%;
            }
            .hero-single-banner-img {
                height: 260px;
            }
        }

        @media (max-width: 480px) {
            .hero-banner-title {
                font-size: 1.5rem !important;
            }
            .hero-single-banner-img {
                height: 180px;
            }
        }

        /* COLOR ACCENT UTILITY CLASSES */
        .text-blue { color: var(--primary) !important; }
        .text-orange { color: var(--secondary) !important; }
        .text-yellow { color: var(--yellow-text) !important; }
        .text-green { color: var(--accent-green) !important; }

        /* Alternate color accents for training roadmap cards */
        .roadmap-card:nth-child(1) .roadmap-step {
            background-color: var(--primary-light);
            color: var(--primary);
        }
        .roadmap-card:nth-child(2) .roadmap-step {
            background-color: #fffbeb;
            color: var(--yellow-text);
        }
        .roadmap-card:nth-child(3) .roadmap-step {
            background-color: #ecfdf5;
            color: var(--accent-green);
        }

        /* Alternate color accents for Singapore calendar cards */
        .calendar-year-card:nth-child(1) .calendar-year-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
        }
        .calendar-year-card:nth-child(2) .calendar-year-header {
            background: linear-gradient(135deg, var(--yellow) 0%, #b45309 100%) !important;
        }
        .calendar-year-card:nth-child(3) .calendar-year-header {
            background: linear-gradient(135deg, var(--accent-green) 0%, #046c4e 100%) !important;
        }

        /* Alternate borders and step colors in calendar */
        .calendar-year-card:nth-child(1) .calendar-stage-row {
            border-left: 2px solid var(--primary);
        }
        .calendar-year-card:nth-child(1) .calendar-stage-time {
            color: var(--primary);
        }
        .calendar-year-card:nth-child(2) .calendar-stage-row {
            border-left: 2px solid var(--yellow-text);
        }
        .calendar-year-card:nth-child(2) .calendar-stage-time {
            color: var(--yellow-text);
        }
        .calendar-year-card:nth-child(3) .calendar-stage-row {
            border-left: 2px solid var(--accent-green);
        }
        .calendar-year-card:nth-child(3) .calendar-stage-time {
            color: var(--accent-green);
        }

        /* Alternate checklist column markers */
        .doc-stage-column:nth-child(1) .doc-check-icon {
            color: var(--primary);
        }
        .doc-stage-column:nth-child(2) .doc-check-icon {
            color: var(--yellow-text);
        }
        .doc-stage-column:nth-child(3) .doc-check-icon {
            color: var(--accent-green);
        }

        /* Hover border accents on benefit cards */
        .benefit-card:nth-child(1):hover, .benefits-card:nth-child(1):hover { border-color: var(--primary); }
        .benefit-card:nth-child(2):hover, .benefits-card:nth-child(2):hover { border-color: var(--accent-green); }
        .benefit-card:nth-child(3):hover, .benefits-card:nth-child(3):hover { border-color: var(--secondary); }
        .benefit-card:nth-child(4):hover, .benefits-card:nth-child(4):hover { border-color: var(--yellow-text); }

        /* Give each benefit card its own accent color at rest, not just on hover,
           so the 4-card grid reads as distinct categories at a glance */
        .benefit-card:nth-child(2) .benefit-card-icon { background: #ecfdf5; }
        .benefit-card:nth-child(2) .benefit-icon-svg { color: var(--accent-green); }
        .benefit-card:nth-child(3) .benefit-card-icon { background: var(--secondary-light); }
        .benefit-card:nth-child(3) .benefit-icon-svg { color: var(--secondary); }
        .benefit-card:nth-child(4) .benefit-card-icon { background: #fffbeb; }
        .benefit-card:nth-child(4) .benefit-icon-svg { color: var(--yellow-text); }

        .benefit-card:nth-child(1):hover .benefit-card-icon { background: var(--primary); }
        .benefit-card:nth-child(2):hover .benefit-card-icon { background: var(--accent-green); }
        .benefit-card:nth-child(3):hover .benefit-card-icon { background: var(--secondary); }
        .benefit-card:nth-child(4):hover .benefit-card-icon { background: var(--yellow-text); }

        /* Must out-specificity the nth-child default icon colors above, otherwise the icon
           keeps its own accent color on hover and disappears into the same-colored background */
        .benefit-card:nth-child(1):hover .benefit-icon-svg,
        .benefit-card:nth-child(2):hover .benefit-icon-svg,
        .benefit-card:nth-child(3):hover .benefit-icon-svg,
        .benefit-card:nth-child(4):hover .benefit-icon-svg { color: var(--white); }

        /* HEADER MOBILE VIEW TRIGGER AT 1200PX (Avoid navigation overlaps on smaller desktop screens) */
        @media (max-width: 1200px) {
            .section {
                scroll-margin-top: 112px;
            }
            .header .container {
                height: 64px;
            }
            .logo {
                height: 44px;
            }
            .logo-title {
                font-size: 0.95rem;
            }
            .logo-subtitle {
                display: none;
            }
            .nav {
                position: fixed;
                top: 104px; /* topbar + header */
                left: 0;
                width: 100%;
                height: calc(100vh - 104px);
                background-color: var(--white);
                flex-direction: column;
                padding: 2rem 1.5rem;
                gap: 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.05);
                transform: translateX(-100%);
                transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s;
                opacity: 0;
                visibility: hidden;
                z-index: 998;
                overflow-y: auto;
            }
            .nav.open {
                transform: translateX(0);
                opacity: 1;
                visibility: visible;
            }
            .nav-link {
                display: block;
                font-size: 1.15rem;
                padding: 1rem 0;
                border-bottom: 1px solid var(--border-color);
                width: 100%;
                white-space: normal !important;
            }
            .nav-link::after {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-cta {
                display: block;
                width: 100%;
                text-align: center;
                margin-top: 1rem;
                padding: 0.875rem 1.5rem !important;
                font-size: 1rem !important;
                border-radius: 12px !important;
            }
        }

        /* 3-LEG TRIPOD ABOUT SECTION */
        .about-tripod {
            background-color: var(--white);
            position: relative;
        }

        .tripod-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
            gap: 2rem;
            margin-top: 3.5rem;
        }

        .tripod-card {
            background-color: var(--primary-light);
            border: 1px solid rgba(11, 37, 69, 0.08);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            transition: var(--transition);
            text-align: left;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        /* Zigzag: middle card sits lower than its neighbors for a staggered rhythm */
        .tripod-card:nth-child(2) {
            margin-top: 2.75rem;
        }

        .tripod-card:hover {
            transform: translateY(-8px);
            background-color: var(--white);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary);
        }

        .tripod-icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .tripod-icon-wrapper.color-1 {
            background-color: rgba(11, 37, 69, 0.1);
            color: var(--primary);
        }

        .tripod-icon-wrapper.color-2 {
            background-color: rgba(0, 147, 64, 0.1);
            color: var(--secondary);
        }

        .tripod-icon-wrapper.color-3 {
            background-color: rgba(46, 204, 113, 0.1);
            color: var(--accent-green);
        }

        .tripod-svg {
            width: 30px;
            height: 30px;
        }

        .tripod-card-title {
            font-family: var(--font-title);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .tripod-card-text {
            font-size: 0.95rem;
            color: var(--dark-gray);
            line-height: 1.65;
        }

        @media (max-width: 992px) {
            .tripod-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .tripod-card:nth-child(2) {
                margin-top: 0;
            }
        }

        /* MAJORS & TRAINING CARDS */
        .majors-section {
            background-color: var(--light-gray);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .majors-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .major-card {
            background-color: var(--white);
            border: 1px solid rgba(11, 37, 69, 0.06);
            border-radius: 16px;
            padding: 2.25rem 1.75rem;
            transition: var(--transition);
            box-shadow: var(--shadow);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .major-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .major-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background-color: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }

        .major-svg {
            width: 26px;
            height: 26px;
        }

        .major-name {
            font-family: var(--font-title);
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1.25rem;
            line-height: 1.4;
        }

        .major-info-row {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            margin-bottom: 0.85rem;
            width: 100%;
        }

        .major-info-row:last-child {
            margin-bottom: 0;
        }

        .info-label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--secondary);
            letter-spacing: 0.5px;
        }

        .info-value {
            font-size: 0.9rem;
            color: var(--dark-gray);
            font-weight: 500;
            line-height: 1.4;
        }

        @media (max-width: 992px) {
            .majors-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        /* VERTICAL STEP-BY-STEP DOCUMENTS SECTION */
        .documents-section {
            background-color: var(--white);
            position: relative;
        }

        .vertical-steps-flow {
            max-width: 900px;
            margin: 3.5rem auto 0;
            display: flex;
            flex-direction: column;
        }

        .vertical-step-block {
            display: flex;
            gap: 2.5rem;
            position: relative;
        }

        .step-timeline-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-shrink: 0;
        }

        .step-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary);
            color: var(--white);
            font-family: var(--font-title);
            font-size: 1.2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 4px solid var(--primary-light);
            z-index: 2;
            box-shadow: var(--shadow);
        }

        .step-connecting-line {
            width: 3px;
            flex-grow: 1;
            background-color: var(--border-color);
            margin: 0.5rem 0;
            z-index: 1;
        }

        .step-card-content {
            background-color: var(--primary-light);
            border: 1px solid rgba(11, 37, 69, 0.06);
            border-radius: 20px;
            padding: 2.25rem;
            margin-bottom: 2.5rem;
            flex-grow: 1;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .vertical-step-block:hover .step-card-content {
            transform: translateX(5px);
            border-color: var(--secondary);
            background-color: var(--white);
            box-shadow: var(--shadow-lg);
        }

        .step-card-header-bar {
            display: flex;
            align-items: baseline;
            gap: 0.75rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .step-label {
            font-size: 0.75rem;
            font-weight: 800;
            color: var(--secondary);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .step-card-title {
            font-family: var(--font-title);
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--primary);
            margin: 0;
        }

        .step-card-desc {
            font-size: 0.95rem;
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .step-bullets-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .step-item-bullet {
            display: flex;
            gap: 0.75rem;
            align-items: flex-start;
        }

        .bullet-check {
            color: var(--accent-green);
            font-weight: 900;
            font-size: 1.1rem;
            line-height: 1;
        }

        .bullet-text {
            font-size: 0.9rem;
            color: var(--dark-gray);
            line-height: 1.45;
        }

        /* Documents CTA Box */
        .documents-cta-box {
            max-width: 900px;
            margin: 2.5rem auto 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 24px;
            padding: 2.5rem;
            color: var(--white);
            box-shadow: var(--shadow-lg);
        }

        .cta-box-grid {
            display: grid;
            grid-template-columns: 1.25fr 0.75fr;
            gap: 2.5rem;
            align-items: center;
        }

        .cta-box-text h4 {
            font-family: var(--font-title);
            font-size: 1.35rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            color: var(--white);
        }

        .cta-box-text p {
            font-size: 0.95rem;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
        }

        .cta-box-text strong {
            color: var(--yellow);
        }

        .lightbox-trigger-container {
            position: relative;
            cursor: pointer;
            border-radius: 16px;
            overflow: hidden;
            border: 4px solid rgba(255, 255, 255, 0.15);
            transition: var(--transition);
        }

        .lightbox-trigger-container:hover {
            border-color: var(--secondary);
            transform: scale(1.02);
        }

        .cta-preview-img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            display: block;
        }

        .zoom-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(11, 37, 69, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .lightbox-trigger-container:hover .zoom-overlay {
            opacity: 1;
        }

        .zoom-overlay span {
            color: var(--white);
            font-size: 0.85rem;
            font-weight: 700;
            background: rgba(0,0,0,0.6);
            padding: 0.35rem 0.75rem;
            border-radius: 6px;
        }

        @media (max-width: 768px) {
            .vertical-step-block {
                gap: 1.25rem;
            }
            .step-circle {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            .step-bullets-grid {
                grid-template-columns: 1fr;
            }
            .cta-box-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .cta-preview-img {
                height: 200px;
            }
        }

        /* ================= MARQUEE GALLERY SECTION ================= */
        .section-gallery {
            background-color: var(--white);
            padding: 5rem 0 3rem 0;
            overflow: hidden;
            width: 100%;
        }

        .marquee-gallery-wrapper {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            width: 100%;
            margin-top: 2.5rem;
            position: relative;
        }

        /* Gradient mask overlays for marquee left & right edges to create smooth fade effect */
        .marquee-gallery-wrapper::before,
        .marquee-gallery-wrapper::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            width: 120px;
            z-index: 2;
            pointer-events: none;
        }

        .marquee-gallery-wrapper::before {
            left: 0;
            background: linear-gradient(to right, var(--white) 15%, transparent 100%);
        }

        .marquee-gallery-wrapper::after {
            right: 0;
            background: linear-gradient(to left, var(--white) 15%, transparent 100%);
        }

        .marquee-row {
            display: flex;
            width: 100%;
            overflow: hidden;
            user-select: none;
        }

        .marquee-track {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            width: max-content;
        }

        /* LTR Row animation */
        .marquee-row-ltr .marquee-track {
            animation: marquee-scroll-ltr 55s linear infinite;
        }

        /* RTL Row animation */
        .marquee-row-rtl .marquee-track {
            animation: marquee-scroll-rtl 55s linear infinite;
        }

        /* Hover pauses scrolling */
        .marquee-row:hover .marquee-track {
            animation-play-state: paused;
        }

        .marquee-item {
            flex-shrink: 0;
            width: 280px;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border-color);
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
            background-color: var(--light-gray);
        }

        /* Alternating heights to create a staggered, interlocking look */
        .marquee-item:nth-child(odd) {
            height: 180px;
        }

        .marquee-item:nth-child(even) {
            height: 220px;
        }

        .marquee-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: zoom-in;
            transition: transform 0.5s ease;
            display: block;
        }

        .marquee-item:hover {
            transform: scale(1.03) translateY(-4px);
            box-shadow: 0 12px 20px rgba(11, 37, 69, 0.1);
            border-color: var(--primary);
        }

        .marquee-item:hover img {
            transform: scale(1.04);
        }

        /* Keyframes */
        @keyframes marquee-scroll-ltr {
            0% { transform: translate3d(-33.3333%, 0, 0); }
            100% { transform: translate3d(0, 0, 0); }
        }

        @keyframes marquee-scroll-rtl {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-33.3333%, 0, 0); }
        }

        /* Responsive styling */
        @media (max-width: 768px) {
            .section-gallery {
                padding: 4rem 0 2rem 0;
            }
            .marquee-gallery-wrapper {
                gap: 0.85rem;
                margin-top: 1.5rem;
            }
            .marquee-gallery-wrapper::before,
            .marquee-gallery-wrapper::after {
                width: 60px;
            }
            .marquee-track {
                gap: 0.85rem;
            }
            .marquee-item {
                width: 180px;
            }
            .marquee-item:nth-child(odd) {
                height: 120px;
            }
            .marquee-item:nth-child(even) {
                height: 145px;
            }
            .marquee-row-ltr .marquee-track {
                animation-duration: 35s;
            }
            .marquee-row-rtl .marquee-track {
                animation-duration: 35s;
            }
        }

