/**
 * Landing Page - ThiÃ¡ÂºÂ¿t KÃ¡ÂºÂ¿ Website TrÃ†Â°Ã¡Â»Âng HÃ¡Â»Âc
 * 
 * @package Flatsome
 * @author WebTruong Team
 * @version 1.0.0
 */

/* ============================================
   CSS VARIABLES
============================================ */
:root {
    /* Primary Colors - Education Blue */
    --primary-color: #1565C0;
    --primary-dark: #0D47A1;
    --primary-light: #42A5F5;
    --primary-gradient: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    
    /* Secondary Colors */
    --secondary-color: #4CAF50;
    --secondary-dark: #388E3C;
    --secondary-light: #81C784;
    
    /* Accent Colors */
    --accent-orange: #FF9800;
    --accent-red: #E53935;
    --accent-purple: #7E57C2;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --text-primary: #1A1A2E;
    --text-secondary: #4A4A68;
    --text-muted: #6B7280;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max: 1200px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 8px 24px rgba(21, 101, 192, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   BASE STYLES
============================================ */
.landing-truong-hoc {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.landing-truong-hoc * {
    box-sizing: border-box;
}

.landing-truong-hoc .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.landing-truong-hoc section {
    padding: var(--section-padding);
}

/* Section Headers */
.landing-truong-hoc .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.landing-truong-hoc .section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(21, 101, 192, 0.05));
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.landing-truong-hoc .section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px;
    line-height: 1.3;
    display: flex;
    justify-content: center;
}

.landing-truong-hoc .section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   BUTTONS
============================================ */
.landing-truong-hoc .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.landing-truong-hoc .btn i {
    font-size: 16px;
}

.landing-truong-hoc .btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.landing-truong-hoc .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgb(21 91 192 / 35%);
    color: #fff !important;
    background: #f60;
}

.landing-truong-hoc .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.landing-truong-hoc .btn-secondary:hover {
    background: #fff;
    color: #1d73be !important;
}

.landing-truong-hoc .btn-white {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.landing-truong-hoc .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.landing-truong-hoc .btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.landing-truong-hoc .btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
}

.landing-truong-hoc .btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.landing-truong-hoc .btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

/* ============================================
   ANIMATIONS
============================================ */
.landing-truong-hoc .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.landing-truong-hoc .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO SECTION
============================================ */
.landing-truong-hoc .hero-section {
    position: relative;
    background: var(--primary-gradient);
    padding: 120px 0 160px;
    overflow: hidden;
}

.landing-truong-hoc .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.landing-truong-hoc .hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.landing-truong-hoc .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 24px;
}

.landing-truong-hoc .hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.2;
    color: #fff;
}

.landing-truong-hoc .hero-title .highlight {
    background: linear-gradient(135deg, #FFD54F, #FFA726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-truong-hoc .hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.landing-truong-hoc .hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.landing-truong-hoc .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.landing-truong-hoc .stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
}

.landing-truong-hoc .stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.landing-truong-hoc .stat-info {
    text-align: left;
}

.landing-truong-hoc .stat-number {
    font-size: 28px;
    font-weight: 700;
}

.landing-truong-hoc .stat-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

.landing-truong-hoc .hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.landing-truong-hoc .hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================
   REALITY SECTION
============================================ */
.landing-truong-hoc .reality-section {
    background: var(--gray-50);
}

.landing-truong-hoc .reality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.landing-truong-hoc .reality-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
}

.landing-truong-hoc .reality-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.landing-truong-hoc .reality-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin: 0 auto 20px;
}

.landing-truong-hoc .reality-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--text-primary);
    text-align: center;
}

.landing-truong-hoc .reality-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.landing-truong-hoc .reality-note {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.05), rgba(76, 175, 80, 0.05));
    padding: 32px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.landing-truong-hoc .note-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.landing-truong-hoc .note-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--text-primary);
}

.landing-truong-hoc .note-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   PROBLEMS SECTION
============================================ */
.landing-truong-hoc .problems-section {
    background: var(--gray-50);
}

.landing-truong-hoc .problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.landing-truong-hoc .problem-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
}

.landing-truong-hoc .problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-red);
}

.landing-truong-hoc .problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1), rgba(229, 57, 53, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-red);
    margin-bottom: 20px;
    margin: 0px auto 20px auto;
}

.landing-truong-hoc .problem-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--text-primary);
    text-align: center;
}

.landing-truong-hoc .problem-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   SOLUTIONS SECTION
============================================ */
.landing-truong-hoc .solutions-section {
    background: var(--white);
}

.landing-truong-hoc .solutions-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.landing-truong-hoc .solutions-content .section-label {
    margin-bottom: 12px;
}

.landing-truong-hoc .solutions-content .section-title {
    text-align: left;
    font-size: 32px;
    margin-bottom: 20px;
}

.landing-truong-hoc .solutions-heading {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--text-primary);
}

.landing-truong-hoc .solutions-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.landing-truong-hoc .solutions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.landing-truong-hoc .solution-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.landing-truong-hoc .solution-item:hover {
    background: rgba(21, 101, 192, 0.05);
}

.landing-truong-hoc .solution-icon {
    color: var(--secondary-color);
    font-size: 24px;
    flex-shrink: 0;
}

.landing-truong-hoc .solution-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--text-primary);
}

.landing-truong-hoc .solution-text p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.landing-truong-hoc .solutions-image {
    position: relative;
}

.landing-truong-hoc .solutions-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.landing-truong-hoc .floating-card {
    position: absolute;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    animation: float 3s ease-in-out infinite;
}

.landing-truong-hoc .floating-card i {
    color: var(--primary-color);
    font-size: 18px;
}

.landing-truong-hoc .floating-card.card-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}
.landing-truong-hoc .floating-card.card-3 {
    bottom: 20%;
    right: 10%;
    animation-delay: 0.75s;
}


.landing-truong-hoc .floating-card.card-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   FEATURES SECTION
============================================ */
.landing-truong-hoc .features-section {
    background: var(--gray-50);
}

.landing-truong-hoc .feature-group {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-normal);
}

.landing-truong-hoc .feature-group:hover {
    box-shadow: var(--shadow-md);
}

.landing-truong-hoc .feature-group:last-child {
    margin-bottom: 0;
}

.landing-truong-hoc .group-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gray-100);
}

.landing-truong-hoc .group-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing-truong-hoc .group-icon i {
    font-size: 28px;
    color: var(--white);
}

.landing-truong-hoc .group-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.landing-truong-hoc .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.landing-truong-hoc .feature-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.landing-truong-hoc .feature-card:hover {
    background: var(--white);
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.landing-truong-hoc .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    /* display: flex; */
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.landing-truong-hoc .feature-icon i {
    font-size: 24px;
    color: var(--white);
}

.landing-truong-hoc .feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--text-primary);
}

.landing-truong-hoc .feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   SERVICES SECTION (TABS)
============================================ */
.landing-truong-hoc .services-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.landing-truong-hoc .services-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.landing-truong-hoc .tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.landing-truong-hoc .tab-btn i {
    font-size: 18px;
}

.landing-truong-hoc .tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.landing-truong-hoc .tab-btn.active {
    background: var(--primary-gradient);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.landing-truong-hoc .tab-content {
    display: none;
}

.landing-truong-hoc .tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.landing-truong-hoc .service-detail {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.landing-truong-hoc .service-info h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 28px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-truong-hoc .service-info h3 i {
    color: var(--primary-color);
}

.landing-truong-hoc .service-block {
    margin-bottom: 24px;
}

.landing-truong-hoc .service-block h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 10px;
}

.landing-truong-hoc .service-block p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

.landing-truong-hoc .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-truong-hoc .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.landing-truong-hoc .feature-list li i {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.landing-truong-hoc .service-benefits {
    background: var(--gray-50);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 24px;
}

.landing-truong-hoc .service-benefits h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 16px;
}

.landing-truong-hoc .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.landing-truong-hoc .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.landing-truong-hoc .benefit-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.landing-truong-hoc .benefit-item span {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.landing-truong-hoc .service-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

/* ============================================
   SERVICES SECTION - FEATURE CARDS
============================================ */
.landing-truong-hoc .services-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.landing-truong-hoc .services-section .feature-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    border: 2px solid var(--gray-100);
    text-align: center;
}

.landing-truong-hoc .services-section .feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.landing-truong-hoc .services-section .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.landing-truong-hoc .services-section .feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.landing-truong-hoc .services-section .feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--text-primary);
}

.landing-truong-hoc .services-section .feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   FEATURES SECTION - FEATURE GROUPS  
============================================ */
.landing-truong-hoc .feature-group {
    margin-bottom: 60px;
}

.landing-truong-hoc .feature-group:last-child {
    margin-bottom: 0;
}

.landing-truong-hoc .group-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
}

.landing-truong-hoc .group-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    flex-shrink: 0;
}

.landing-truong-hoc .group-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.landing-truong-hoc .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.landing-truong-hoc .feature-card {
    background: var(--gray-50);
    padding: 28px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

.landing-truong-hoc .feature-card:hover {
    background: var(--white);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.landing-truong-hoc .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 16px;
    margin: 10px auto;
}

.landing-truong-hoc .feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--text-primary);
}

.landing-truong-hoc .feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--text-primary);
}

.landing-truong-hoc .feature-card p {
    font-size: 14px;
    color: var(--white);
    margin: 0 auto 20px;
}

.landing-truong-hoc .feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--text-primary);
}

.landing-truong-hoc .feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   PROCESS SECTION (TIMELINE)
============================================ */
.landing-truong-hoc .process-section {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: var(--white);
}

.landing-truong-hoc .process-section .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.landing-truong-hoc .process-section .section-title {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-truong-hoc .process-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.landing-truong-hoc .process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    /* max-width: 1000px; */
    margin: 0 auto;
    gap: 20px;
}

.landing-truong-hoc .process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

/* ============================================
   BENEFITS SECTION
============================================ */
.landing-truong-hoc .benefits-section {
    background: var(--gray-50);
}

.landing-truong-hoc .benefits-grid {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 40px;
    /* margin-bottom: 50px; */
}

.landing-truong-hoc .benefit-group {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.landing-truong-hoc .benefit-group .group-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
}

.landing-truong-hoc .benefit-group .group-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    flex-shrink: 0;
}

.landing-truong-hoc .benefit-group h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.landing-truong-hoc .benefit-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.landing-truong-hoc .benefit-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.landing-truong-hoc .benefit-item:hover {
    background: rgba(21, 101, 192, 0.05);
    transform: translateX(5px);
}

.landing-truong-hoc .benefit-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.landing-truong-hoc .benefit-content h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--text-primary);
}

.landing-truong-hoc .benefit-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

.landing-truong-hoc .benefits-cta {
    text-align: center;
}

.landing-truong-hoc .cta-box {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.05), rgba(76, 175, 80, 0.05));
    padding: 40px;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
}

.landing-truong-hoc .cta-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.landing-truong-hoc .cta-box h3 i {
    color: var(--primary-color);
    font-size: 20px;
}

.landing-truong-hoc .cta-box p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 24px;
}

.landing-truong-hoc .cta-box .btn {
    margin: 0 auto;
}

/* ============================================
   PROCESS SECTION - TIMELINE STEPS
============================================ */
.landing-truong-hoc .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.landing-truong-hoc .step-number {
    width: 70px;
    height: 70px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
}

.landing-truong-hoc .step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--white);
}

.landing-truong-hoc .step-content p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   REASONS SECTION
============================================ */
.landing-truong-hoc .reasons-section {
    background: var(--gray-50);
}

.landing-truong-hoc .reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.landing-truong-hoc .reason-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.landing-truong-hoc .reason-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.landing-truong-hoc .reason-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(21, 101, 192, 0.05));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin: 0 auto 20px;
}

.landing-truong-hoc .reason-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--text-primary);
}

.landing-truong-hoc .reason-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   PRICING SECTION
============================================ */
.landing-truong-hoc .pricing-section {
    background: var(--white);
}

.landing-truong-hoc .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.landing-truong-hoc .pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    border: 2px solid var(--gray-200);
}

.landing-truong-hoc .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.landing-truong-hoc .pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
}

.landing-truong-hoc .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.landing-truong-hoc .pricing-badge {
    position: absolute;
    top: 16px;
    right: -35px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 6px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.landing-truong-hoc .pricing-header {
    padding: 36px 28px 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.landing-truong-hoc .pricing-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin: 0 auto 16px;
}

.landing-truong-hoc .pricing-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text-primary);
}

.landing-truong-hoc .pricing-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.landing-truong-hoc .pricing-features {
    padding: 28px;
    flex-grow: 1;
}

.landing-truong-hoc .pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-truong-hoc .pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--gray-100);
}

.landing-truong-hoc .pricing-features li:last-child {
    border-bottom: none;
}

.landing-truong-hoc .pricing-features li.disabled {
    opacity: 0.5;
}

.landing-truong-hoc .pricing-features li.disabled i {
    color: var(--gray-400);
}

.landing-truong-hoc .pricing-footer {
    padding: 0 28px 28px;
}

.landing-truong-hoc .pricing-footer .btn {
    width: 100%;
}

.landing-truong-hoc .pricing-note {
    text-align: center;
    margin-top: 40px;
}

.landing-truong-hoc .pricing-note p {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-100);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

.landing-truong-hoc .pricing-note i {
    color: var(--primary-color);
}

/* ============================================
   FAQ SECTION
============================================ */
.landing-truong-hoc .faq-section {
    background: var(--gray-50);
}

.landing-truong-hoc .faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.landing-truong-hoc .faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.landing-truong-hoc .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-normal);
}

.landing-truong-hoc .faq-question:hover {
    color: var(--primary-color);
}

.landing-truong-hoc .faq-question i {
    font-size: 14px;
    color: var(--primary-color);
    transition: transform var(--transition-normal);
}

.landing-truong-hoc .faq-item.active .faq-question {
    color: var(--primary-color);
}

.landing-truong-hoc .faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.landing-truong-hoc .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.landing-truong-hoc .faq-item.active .faq-answer {
    max-height: 500px;
}

.landing-truong-hoc .faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.landing-truong-hoc .cta-section {
    position: relative;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    overflow: hidden;
}

.landing-truong-hoc .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.landing-truong-hoc .cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.03) 20px
    );
    animation: cta-pattern-move 20s linear infinite;
    pointer-events: none;
}

@keyframes cta-pattern-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.landing-truong-hoc .cta-box {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 40px;
    z-index: 1;
}

.landing-truong-hoc .cta-box h3 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
    line-height: 1.3;
    animation: cta-title-appear 0.8s ease-out;
}

@keyframes cta-title-appear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-truong-hoc .cta-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.landing-truong-hoc .cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
    line-height: 1.3;
    animation: cta-title-appear 0.8s ease-out;
}

.landing-truong-hoc .cta-subtitle {
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.98;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0,0,0,0.1);
    animation: cta-text-appear 0.8s ease-out 0.2s backwards;
}

.landing-truong-hoc .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: cta-buttons-appear 0.8s ease-out 0.4s backwards;
}

@keyframes cta-buttons-appear {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.landing-truong-hoc .cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 60px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.landing-truong-hoc .cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.landing-truong-hoc .cta-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

.landing-truong-hoc .cta-buttons .btn-white {
    background: white;
    color: #1e40af;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.landing-truong-hoc .cta-buttons .btn-white::before {
    background: rgba(30, 64, 175, 0.1);
}

.landing-truong-hoc .cta-buttons .btn-white:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    color: #1e3a8a;
}

.landing-truong-hoc .cta-buttons .btn-outline-white {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.landing-truong-hoc .cta-buttons .btn-outline-white::before {
    background: rgba(255, 255, 255, 0.2);
}

.landing-truong-hoc .cta-buttons .btn-outline-white:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.landing-truong-hoc .cta-buttons .btn i {
    font-size: 18px;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.landing-truong-hoc .cta-buttons .btn:hover i {
    transform: scale(1.1);
}

.landing-truong-hoc .cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.landing-truong-hoc .cta-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 15px;
    opacity: 0.95;
}

.landing-truong-hoc .cta-contact-info .contact-item i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.landing-truong-hoc .cta-box p {
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.98;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0,0,0,0.1);
    animation: cta-text-appear 0.8s ease-out 0.2s backwards;
}

@keyframes cta-text-appear {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 0.98;
        transform: translateY(0);
    }
}

.landing-truong-hoc .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: white;
    color: #1e40af;
    padding: 20px 50px;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.2),
        0 0 0 0 rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
    animation: cta-button-appear 0.8s ease-out 0.4s backwards;
}

@keyframes cta-button-appear {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.landing-truong-hoc .cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(30, 64, 175, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.landing-truong-hoc .cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.landing-truong-hoc .cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.25),
        0 0 0 8px rgba(255,255,255,0.3);
    color: #1e3a8a;
}

.landing-truong-hoc .cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

.landing-truong-hoc .cta-button i {
    font-size: 22px;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.landing-truong-hoc .cta-button:hover i {
    transform: translateX(5px);
}
.page-template-page-thiet-ke-website-truong-tieu-hoc .landing-truong-hoc .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  
    gap: 40px;
   
}

.page-template-page-thiet-ke-website-truong-tieu-hoc .landing-truong-hoc .cta-box {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 40px;
    z-index: 1;
    font-size: 14px;
    color: #000;
    margin-top: 30px;
}
.page-template-page-thiet-ke-website-truong-tieu-hoc  .landing-truong-hoc .cta-box h3 {
    font-size: 29px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0d47a1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
    animation: cta-title-appear 0.8s ease-out;
}
.page-template-page-thiet-ke-website-truong-tieu-hoc .landing-truong-hoc .cta-box p {
    font-size: 14px;
    margin-bottom: 40px;
    opacity: 0.98;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    animation: cta-text-appear 0.8s ease-out 0.2s backwards;
}

/* Template Card */
.template-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.template-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.template-card-image {
    position: relative;
    aspect-ratio: 9 / 11;
    overflow: hidden;
    background: #e5e7eb;
}

.template-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.template-card:hover .template-card-image img {
    transform: scale(1.05);
}

.template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.9), rgba(13, 71, 161, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.template-card-image:hover .template-overlay {
    opacity: 1;
}

.template-view-text {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.template-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.template-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    z-index: 2;
}

.template-card-body {
    padding: 24px;
}

.template-category-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.template-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.template-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.template-card-title a:hover {
    color: #1565C0;
}

.template-card-excerpt {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.template-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.template-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.template-meta-item i {
    color: #9ca3af;
}

.template-card-actions {
    display: flex;
    gap: 12px;
}

.template-btn {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    box-sizing: border-box;
    height: 44px;
}

.template-btn-secondary {
    background: white;
    color: #1565C0;
    border-color: #1565C0;
}

.template-btn-secondary:hover {
    background: #f0f9ff;
}

.template-btn-primary {
    background: linear-gradient(135deg, #1565C0, #0D47A1);
    color: white;
    border-color: transparent;
}

.template-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}

/* Loading State */
.templates-loading {
    text-align: center;
    padding: 60px 0;
    font-size: 16px;
    color: #6b7280;
}

.templates-empty {
    text-align: center;
    padding: 80px 20px;
}

.templates-empty i {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.templates-empty h3 {
    font-size: 20px;
    color: #111827;
    margin: 0 0 8px;
}

.templates-empty p {
    font-size: 15px;
    color: #6b7280;
}

/* Pagination */
.templates-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 10px 16px;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    border-color: #1565C0;
    color: #1565C0;
}

.pagination-btn.active {
    background: #1565C0;
    color: white;
    border-color: #1565C0;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Why Choose Section */
.templates-showcase .why-choose-section {
    background: white;
    padding: 80px 0;
}

.templates-showcase .why-choose-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0 0 60px;
}

.templates-showcase .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.templates-showcase .why-item {
    text-align: center;
}

.templates-showcase .why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1565C0, #0D47A1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin: 0 auto 24px;
}

.templates-showcase .why-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
}

.templates-showcase .why-item p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.templates-showcase .cta-section {
    background: linear-gradient(135deg, #1565C0, #0D47A1);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.templates-showcase .cta-section h2 {
    font-size: 36px;
    font-weight: 700;color:#fff;
    margin: 0 0 16px;
}

.templates-showcase .cta-section p {
    font-size: 18px;
    opacity: 0.95;
    margin: 0 0 32px;
    line-height: 1.7;
}

.templates-showcase .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.templates-showcase .cta-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.templates-showcase .cta-btn-white {
    background: white;
    color: #1565C0;
    border: none;
}

.templates-showcase .cta-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.templates-showcase .cta-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.templates-showcase .cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Registration Modal */
.template-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.template-modal.active {
    display: flex;
}

.template-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Hero Section */
.templates-showcase .hero-section {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.templates-showcase .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.templates-showcase .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.templates-showcase .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.templates-showcase .hero-title {
    font-size: 48px;color:#fff;
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.2;
}

.templates-showcase .hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    line-height: 1.7;
    margin: 0 0 40px;
}

.templates-showcase .hero-search {
    max-width: 500px;
    margin: 0 auto 40px;
}

.templates-showcase .hero-search input {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.templates-showcase .hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.templates-showcase .hero-stat {
    text-align: center;
}

.templates-showcase .hero-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
}

.templates-showcase .hero-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Filter Tabs */
.templates-showcase .filter-section {
    background: white;
    padding: 32px 0;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.templates-showcase .filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.templates-showcase .filter-tab {
    padding: 10px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.templates-showcase .filter-tab:hover {
    border-color: #1565C0;
    color: #1565C0;
}

.templates-showcase .filter-tab.active {
    background: linear-gradient(135deg, #1565C0, #0D47A1);
    color: white;
    border-color: #1565C0;
    transform: scale(1.05);
}

/* Sort & View Options */
.templates-showcase .sort-section {
    background: #f9fafb;
    padding: 24px 0;
}

.templates-showcase .sort-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.templates-showcase .sort-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.templates-showcase .sort-controls label {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.templates-showcase .sort-controls select {
    padding: 8px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.templates-showcase .sort-info {
    font-size: 14px;
    color: #6b7280;
}

/* Template Grid */
.templates-showcase .templates-grid-section {
    background: #f9fafb;
    padding: 60px 0;
}

.templates-showcase .templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Template Card */
.template-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.template-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.template-card-image {
    position: relative;
    aspect-ratio: 9 / 11;
    overflow: hidden;
    background: #e5e7eb;
}

.template-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.template-card:hover .template-card-image img {
    transform: scale(1.05);
}

.template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.9), rgba(13, 71, 161, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.template-card-image:hover .template-overlay {
    opacity: 1;
}

.template-view-text {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.template-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.template-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    z-index: 2;
}

.template-card-body {
    padding: 24px;
}

.template-category-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.template-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.template-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.template-card-title a:hover {
    color: #1565C0;
}

.template-card-excerpt {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.template-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.template-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.template-meta-item i {
    color: #9ca3af;
}

.template-card-actions {
    display: flex;
    gap: 12px;
}

.template-btn {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    box-sizing: border-box;
    height: 44px;
}

.template-btn-secondary {
    background: white;
    color: #1565C0;
    border-color: #1565C0;
}

.template-btn-secondary:hover {
    background: #f0f9ff;
}

.template-btn-primary {
    background: linear-gradient(135deg, #1565C0, #0D47A1);
    color: white;
    border-color: transparent;
}

.template-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}

/* Loading State */
.templates-loading {
    text-align: center;
    padding: 60px 0;
    font-size: 16px;
    color: #6b7280;
}

.templates-empty {
    text-align: center;
    padding: 80px 20px;
}

.templates-empty i {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.templates-empty h3 {
    font-size: 20px;
    color: #111827;
    margin: 0 0 8px;
}

.templates-empty p {
    font-size: 15px;
    color: #6b7280;
}

/* Pagination */
.templates-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 10px 16px;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    border-color: #1565C0;
    color: #1565C0;
}

.pagination-btn.active {
    background: #1565C0;
    color: white;
    border-color: #1565C0;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Why Choose Section */
.templates-showcase .why-choose-section {
    background: white;
    padding: 80px 0;
}

.templates-showcase .why-choose-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0 0 60px;
}

.templates-showcase .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.templates-showcase .why-item {
    text-align: center;
}

.templates-showcase .why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1565C0, #0D47A1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin: 0 auto 24px;
}

.templates-showcase .why-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
}

.templates-showcase .why-item p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.templates-showcase .cta-section {
    background: linear-gradient(135deg, #1565C0, #0D47A1);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.templates-showcase .cta-section h2 {
    font-size: 36px;
    font-weight: 700;color:#fff;
    margin: 0 0 16px;
}

.templates-showcase .cta-section p {
    font-size: 18px;
    opacity: 0.95;
    margin: 0 0 32px;
    line-height: 1.7;
}

.templates-showcase .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.templates-showcase .cta-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.templates-showcase .cta-btn-white {
    background: white;
    color: #1565C0;
    border: none;
}

.templates-showcase .cta-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.templates-showcase .cta-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.templates-showcase .cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Registration Modal */
.template-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.template-modal.active {
    display: flex;
}

.template-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.template-modal-header {
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
    flex-shrink: 0;
}

.template-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.template-modal-close:hover {
    background: #e5e7eb;
}

.template-modal-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin: 0 auto 16px;
}

.template-modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}

.template-modal-header p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.template-modal-body {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1565C0;
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input[readonly] {
    background: #f3f4f6;
    color: #6b7280;
}

.package-options {
    display: flex;
    gap: 12px;
}

.package-option {
    flex: 1;
    position: relative;
}

.package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.package-label {
    display: block;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.package-option input[type="radio"]:checked + .package-label {
    border-color: #1565C0;
    background: #f0f9ff;
}

.package-name {
    display: block;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.package-price {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #1565C0;
    margin-bottom: 4px;
}

.package-desc {
    font-size: 12px;
    color: #6b7280;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.consent-checkbox input {
    margin-top: 4px;
}

.consent-checkbox label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 400;
}

.template-modal-footer {
    padding: 24px;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
    background: white;
    border-radius: 0 0 12px 12px;
    display: flex;
    gap: 12px;
}

.modal-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn-cancel {
    background: white;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.modal-btn-cancel:hover {
    background: #f9fafb;
}

.modal-btn-submit {
    background: linear-gradient(135deg, #1565C0, #0D47A1);
    color: white;
}

.modal-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}

.modal-btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1024px) {
    .templates-showcase .templates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .templates-showcase .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .templates-showcase .hero-title {
        font-size: 32px;
    }
    
    .templates-showcase .hero-subtitle {
        font-size: 16px;
    }
    
    .templates-showcase .hero-stats {
        gap: 24px;
    }
    
    .templates-showcase .templates-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .templates-showcase .filter-tabs {
        gap: 8px;
    }
    
    .templates-showcase .filter-tab {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .templates-showcase .sort-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .template-card-actions {
        flex-direction: column;
    }
    
    .package-options {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .templates-showcase .hero-section {
        padding: 60px 0 50px;
    }
    
    .templates-showcase .hero-title {
        font-size: 24px;
    }
    
    .templates-showcase .cta-section h2 {
        font-size: 24px;
    }
    
    .templates-showcase .cta-buttons {
        flex-direction: column;
    }
}
/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .landing-truong-hoc .container {
        padding: 0 24px;
    }
    
    .landing-truong-hoc .hero-section {
        padding: 100px 0 140px;
    }
    
    .landing-truong-hoc .hero-content {
        max-width: 600px;
    }
    
    .landing-truong-hoc .hero-title {
        font-size: 40px;
    }
    
    .landing-truong-hoc section {
        padding: 70px 0;
    }
    
    .landing-truong-hoc .section-title {
        font-size: 32px;
    }
    
    .landing-truong-hoc .problems-grid,
    .landing-truong-hoc .reality-grid,
    .landing-truong-hoc .benefits-grid,
    .landing-truong-hoc .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .landing-truong-hoc .process-container {
        grid-template-columns: 1fr;
    }
    
    .landing-truong-hoc .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .landing-truong-hoc .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .landing-truong-hoc .services-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .landing-truong-hoc .services-section .feature-card {
        padding: 28px 20px;
    }
    
    .landing-truong-hoc .services-section .feature-icon {
        width: 56px;
        height: 56px;
    }
    
    .landing-truong-hoc .services-section .feature-icon i {
        font-size: 26px;
    }
    
    .landing-truong-hoc .service-detail {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }
    
    .landing-truong-hoc .service-image {
        order: -1;
    }
    
    .landing-truong-hoc .service-info h3 {
        font-size: 24px;
    }
    
    .landing-truong-hoc .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .landing-truong-hoc .solutions-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .landing-truong-hoc .solutions-image {
        order: -1;
    }
    
    .landing-truong-hoc .process-timeline {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .landing-truong-hoc .process-timeline::before {
        display: none;
    }
    
    .landing-truong-hoc .process-step {
        flex: 0 0 calc(50% - 15px);
    }
    
    .landing-truong-hoc .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .landing-truong-hoc .pricing-card.featured {
        transform: scale(1);
    }
    
    .landing-truong-hoc .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .landing-truong-hoc .cta-title {
        font-size: 36px;
    }
    
    .landing-truong-hoc .cta-subtitle {
        font-size: 18px;
    }
    
    .landing-truong-hoc .cta-contact-info {
        flex-direction: column;
        gap: 16px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .landing-truong-hoc .container {
        padding: 0 20px;
    }
    
    .landing-truong-hoc .hero-section {
        padding: 80px 0 120px;
    }
    
    .landing-truong-hoc .hero-title {
        font-size: 32px;
    }
    
    .landing-truong-hoc .hero-subtitle {
        font-size: 17px;
    }
    
    .landing-truong-hoc .hero-stats {
        gap: 20px;
    }
    
    .landing-truong-hoc .stat-item {
        padding: 14px 20px;
    }
    
    .landing-truong-hoc .stat-number {
        font-size: 24px;
    }
    
    .landing-truong-hoc section {
        padding: 60px 0;
    }
    
    .landing-truong-hoc .section-title {
        font-size: 28px;
    }
    
    .landing-truong-hoc .section-subtitle {
        font-size: 16px;
    }
    
    .landing-truong-hoc .problems-grid,
    .landing-truong-hoc .reality-grid,
    .landing-truong-hoc .benefits-grid,
    .landing-truong-hoc .reasons-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .landing-truong-hoc .problem-card,
    .landing-truong-hoc .reality-card,
    .landing-truong-hoc .benefit-card,
    .landing-truong-hoc .reason-card {
        padding: 28px;
    }
    
    .landing-truong-hoc .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .landing-truong-hoc .feature-card {
        padding: 28px;
    }
    
    .landing-truong-hoc .services-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-truong-hoc .service-item {
        padding: 28px;
    }
    
    .landing-truong-hoc .services-section .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .landing-truong-hoc .services-section .feature-card {
        padding: 28px;
    }
    
    .landing-truong-hoc .services-section .feature-icon {
        width: 54px;
        height: 54px;
    }
    
    .landing-truong-hoc .services-section .feature-icon i {
        font-size: 24px;
    }
    
    .landing-truong-hoc .services-section .feature-card h3 {
        font-size: 17px;
    }
    
    .landing-truong-hoc .service-detail {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px;
    }
    
    .landing-truong-hoc .service-info h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .landing-truong-hoc .service-block {
        margin-bottom: 20px;
    }
    
    .landing-truong-hoc .service-block h4 {
        font-size: 15px;
    }
    
    .landing-truong-hoc .service-block p {
        font-size: 14px;
    }
    
    .landing-truong-hoc .feature-list li {
        font-size: 14px;
    }
    
    .landing-truong-hoc .benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .landing-truong-hoc .service-benefits {
        padding: 16px;
    }
    
    .landing-truong-hoc .solutions-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .landing-truong-hoc .solutions-content .section-title {
        font-size: 26px;
        text-align: center;
    }
    
    .landing-truong-hoc .solutions-desc {
        text-align: center;
        font-size: 16px;
    }
    
    .landing-truong-hoc .solution-item {
        flex-direction: column;
        text-align: center;
    }
    
    .landing-truong-hoc .solution-icon {
        font-size: 32px;
    }
    
    .landing-truong-hoc .process-timeline {
        flex-direction: column;
        gap: 24px;
    }
    
    .landing-truong-hoc .process-step {
        flex: 1;
        width: 100%;
    }
    
    .landing-truong-hoc .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-truong-hoc .pricing-card {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
    
    .landing-truong-hoc .reality-note {
        padding: 20px;
        font-size: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .landing-truong-hoc .group-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .landing-truong-hoc .group-number {
        font-size: 16px;
        padding: 8px 20px;
    }
    
    .landing-truong-hoc .group-title {
        font-size: 22px;
    }
    
    .landing-truong-hoc .benefit-group {
        padding: 28px;
    }
    
    .landing-truong-hoc .step-card {
        padding: 28px;
    }
    
    .landing-truong-hoc .step-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .landing-truong-hoc .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-truong-hoc .cta-section {
        padding: 70px 0;
    }
    
    .landing-truong-hoc .cta-content {
        padding: 0 20px;
    }
    
    .landing-truong-hoc .cta-title {
        font-size: 30px;
    }
    
    .landing-truong-hoc .cta-subtitle {
        font-size: 17px;
        margin-bottom: 32px;
    }
    
    .landing-truong-hoc .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .landing-truong-hoc .cta-buttons .btn {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
    
    .landing-truong-hoc .cta-contact-info {
        margin-top: 32px;
        gap: 20px;
    }
    
    .landing-truong-hoc .cta-contact-info .contact-item {
        font-size: 14px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .landing-truong-hoc .container {
        padding: 0 16px;
    }
    
    .landing-truong-hoc .hero-section {
        padding: 60px 0 100px;
    }
    
    .landing-truong-hoc .hero-badge {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .landing-truong-hoc .hero-title {
        font-size: 26px;
        margin-bottom: 16px;
    }
    
    .landing-truong-hoc .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .landing-truong-hoc .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .landing-truong-hoc .hero-cta .btn {
        width: 100%;
    }
    
    .landing-truong-hoc .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .landing-truong-hoc .stat-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .landing-truong-hoc section {
        padding: 50px 0;
    }
    
    .landing-truong-hoc .section-header {
        margin-bottom: 40px;
    }
    
    .landing-truong-hoc .section-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .landing-truong-hoc .section-subtitle {
        font-size: 15px;
    }
    
    .landing-truong-hoc .problem-card,
    .landing-truong-hoc .reality-card,
    .landing-truong-hoc .feature-card,
    .landing-truong-hoc .benefit-card,
    .landing-truong-hoc .reason-card {
        padding: 24px;
    }
    
    .landing-truong-hoc .problem-card h3,
    .landing-truong-hoc .reality-card h3,
    .landing-truong-hoc .benefit-card h3 {
        font-size: 17px;
    }
    
    .landing-truong-hoc .floating-card {
        display: none;
    }
    
    .landing-truong-hoc .reality-note {
        padding: 16px;
        font-size: 14px;
    }
    
    .landing-truong-hoc .note-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .landing-truong-hoc .group-number {
        font-size: 14px;
        padding: 6px 16px;
    }
    
    .landing-truong-hoc .group-title {
        font-size: 20px;
    }
    
    .landing-truong-hoc .benefit-group {
        padding: 24px;
    }
    
    .landing-truong-hoc .service-item {
        padding: 24px;
    }
    
    .landing-truong-hoc .service-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .landing-truong-hoc .services-section .features-grid {
        gap: 16px;
    }
    
    .landing-truong-hoc .services-section .feature-card {
        padding: 24px 20px;
    }
    
    .landing-truong-hoc .services-section .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .landing-truong-hoc .services-section .feature-icon i {
        font-size: 22px;
    }
    
    .landing-truong-hoc .services-section .feature-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .landing-truong-hoc .services-section .feature-card p {
        font-size: 13px;
    }
    
    .landing-truong-hoc .service-detail {
        padding: 24px;
        gap: 24px;
    }
    
    .landing-truong-hoc .service-info h3 {
        font-size: 20px;
        margin-bottom: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .landing-truong-hoc .service-block {
        margin-bottom: 16px;
    }
    
    .landing-truong-hoc .service-block h4 {
        font-size: 14px;
    }
    
    .landing-truong-hoc .service-block p {
        font-size: 13px;
    }
    
    .landing-truong-hoc .feature-list li {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .landing-truong-hoc .service-benefits {
        padding: 16px;
        margin-top: 20px;
    }
    
    .landing-truong-hoc .service-benefits h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .landing-truong-hoc .benefit-item i {
        font-size: 20px;
    }
    
    .landing-truong-hoc .benefit-item span {
        font-size: 12px;
    }
    
    .landing-truong-hoc .solutions-wrapper {
        gap: 28px;
    }
    
    .landing-truong-hoc .solutions-content .section-title {
        font-size: 22px;
    }
    
    .landing-truong-hoc .solutions-desc {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .landing-truong-hoc .solution-item {
        padding: 16px;
    }
    
    .landing-truong-hoc .solution-text h4 {
        font-size: 15px;
    }
    
    .landing-truong-hoc .solution-text p {
        font-size: 13px;
    }
    
    .landing-truong-hoc .process-timeline {
        gap: 20px;
    }
    
    .landing-truong-hoc .pricing-card {
        max-width: 100%;
    }
    
    .landing-truong-hoc .pricing-header {
        padding: 24px;
    }
    
    .landing-truong-hoc .pricing-body {
        padding: 24px;
    }
    
    .landing-truong-hoc .pricing-footer {
        padding: 24px;
    }
    
    .landing-truong-hoc .step-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .landing-truong-hoc .step-card {
        padding: 24px;
    }
    
    .landing-truong-hoc .step-title {
        font-size: 18px;
    }
    
    .landing-truong-hoc .step-content p {
        font-size: 14px;
    }
    
    .landing-truong-hoc .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .landing-truong-hoc .faq-answer p {
        padding: 0 20px 16px;
        font-size: 14px;
    }
    
    .landing-truong-hoc .cta-section {
        padding: 60px 0;
    }
    
    .landing-truong-hoc .cta-content {
        padding: 0 16px;
    }
    
    .landing-truong-hoc .cta-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .landing-truong-hoc .cta-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .landing-truong-hoc .cta-buttons .btn {
        padding: 16px 28px;
        font-size: 15px;
    }
    
    .landing-truong-hoc .cta-buttons .btn i {
        font-size: 16px;
    }
    
    .landing-truong-hoc .cta-contact-info {
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
    }
    
    .landing-truong-hoc .cta-contact-info .contact-item {
        font-size: 13px;
        justify-content: center;
    }
    
    .landing-truong-hoc .cta-contact-info .contact-item i {
        font-size: 16px;
    }
}

