body .site-content,
body #content,
body #primary,
body .entry-content,
body article.post,
body article.page {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Ẩn hero content của WordPress theme */
.hero__content,
.hero.hero--center.u-text-center,
.hero,
.entry-title {
    display: none !important;
}

/* Scroll Triggered Fade Up Animation */
@keyframes fadeUpScroll {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Base class - hidden by default */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Active class - visible when scrolled into view */
.scroll-fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Variations with different timings */
.scroll-fade-up-fast {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.scroll-fade-up-fast.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-up-slow {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.scroll-fade-up-slow.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay variations */
.scroll-fade-up-delay-1 {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}

.scroll-fade-up-delay-1.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-up-delay-2 {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.4s;
}

.scroll-fade-up-delay-2.active {
    opacity: 1;
    transform: translateY(0);
}

/* Global Font Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Be Vietnam Pro', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Be Vietnam Pro', Arial, sans-serif;
}

p,
span,
div,
a,
button,
input,
select,
textarea {
    font-family: 'Be Vietnam Pro', Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/*============================================================================== Header Section ============================================================================== */

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /* Thêm để đảm bảo content full width */
}

.header-text {
    flex: 1;
    text-align: left;
    /* Giữ nguyên */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Thay đổi từ center thành flex-start */
}

.header-text img{
    width: 685px !important;
    /* Thay đổi từ center thành flex-start */
}
@media (max-width: 1024px) {
    .header-text img{
     width: 350px !important;
    /* Thay đổi từ center thành flex-start */
    }
}
.header h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
}

.header-subtitle {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 16px;
}

.header-description {
    font-size: 19px;
    margin-bottom: 32px;
}

.btn-tim-hieu-them {
    height: 48px;
    width: 265px;
    background: #F36F21;
    color: white !important;
    padding: 12px 40px !important;
    border: 0.25px solid #D7D7D7 !important;
    border-radius: 1000px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 20px !important;
    align-self: flex-start !important;
    text-transform: none !important;
    font-weight: normal !important;
    line-height: 24px;
}

.btn-tim-hieu-them:hover {
    background: #e55a2b;
    color: white;
    transform: translateY(-2px);
}

.header-mascot {
    flex: 1;
    text-align: center;
}

.mascot-container {
    position: relative;
}

.mascot-img {
    width: 300px;
    height: 300px;
    /* Placeholder cho hình mascot */
}

/* Responsive cho các màn hình nhỏ */
@media (max-width: 768px) {
    .header {
        display: none;
        /* ẨN HEADER TRÊN MOBILE */
    }

    .header-text {
        margin-left: 0;
        /* Reset margin trên mobile */
    }

    .header h1 {
        font-size: 32px;
        /* Giảm font size trên mobile */
    }
}

@media (max-width: 480px) {
    .header {
        display: none;
        /* ẨN HEADER TRÊN MOBILE NHỎ */
    }

    .header-content {
        flex-direction: column;
        /* Stack các element trên mobile nhỏ */
        text-align: center;
    }

    .mascot-img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 1024px) {
}

/*==============================================================================  Header Mobile Section ============================================================================== */

.header-mobi-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    height: 509px; /* ĐỔI: Từ 100vh thành 509px cố định */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 0 auto;
}

/* Text banner ở top */
.text-banner-top {
    margin-bottom: auto;
}

.text-banner-img {
    max-width: 100%;
    height: auto;
}

/* Button ở bottom */
.button-bottom {
    width: 100%;
}

.cta-button-mobile {
    background: #FF6B35;
    color: white;
    padding: 12px 40px !important;
    border-radius: 1000px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 85%;
    width: 265px !important;
    line-height: 24px;
    border: 0.25px solid #D7D7D7;
}

.cta-button-mobile:hover {
    background: #E55A2B;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        display: none !important;
    }

    .header-mobi {
        display: flex !important;
    }
}

@media (min-width: 769px) {
    .header-mobi {
        display: none !important;
    }
}

/* Fix cho màn hình nhỏ */
@media (max-width: 480px) {
    .header-mobi-content {
        max-width: 100%;
        /* Full width trên mobile */
        padding: 15px;
    }
    
    .text-banner-img {
        max-width: 100%;
    }

    .cta-button-mobile {
        padding: 12px 40px;
        font-size: 16px;
    }
}

/*==============================================================================  Admissions Section - Updated Design ============================================================================== */
.admissions {
    background: #fafafa;
    padding: 40px 160px 40px 160px !important;
    text-align: center !important;
    position: relative !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
    display: none !important;
}

@media (max-width: 1024px) {
    .admissions {
        padding: 40px 40px 40px 40px !important;
    }
}
.admissions-form {
    background: white !important;
    padding: 24px 60px !important;
    border-radius: 8px !important;
    margin: 16px auto !important;
    max-width: 1200px !important;
    box-shadow: 1px 1px 8px 0 rgba(243, 111, 33, 0.15);
    border: 1px solid #f0f0f0 !important;
    position: relative !important;
    overflow: hidden !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
}

.admissions-form > * {
    position: relative !important;
    z-index: 2 !important;
}

.form-title {
    color: #ff6b35 !important;
    font-size: 20px !important;
    margin-bottom: 28px !important;
    text-align: center !important;
    font-weight: bold !important;
    background: none !important;
    padding: 0 !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
    text-transform: none !important;
}

.form-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    align-items: center !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.form-inputs {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
}

/* Họ và tên input */
.form-inputs input[type="text"] {
    width: 100% !important;
    height: 50px !important;
    padding: 10px !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    background: rgba(255, 255, 255, 0.60) !important;
    box-shadow: 1px 1px 8px 0 rgba(0, 102, 179, 0.08) !important;
    color: #F36F21 !important; /* Text sau khi nhập */
    font-family: 'Be Vietnam Pro', sans-serif !important;
    text-transform: none !important;
    font-weight: normal !important;
    box-sizing: border-box !important;
}

/* Phone Email Row */
.phone-email-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    width: 100% !important;
}

.phone-email-row input {
    height: 50px !important;
    padding: 12px !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    color: #F36F21 !important; /* Text sau khi nhập */
    font-family: 'Be Vietnam Pro', sans-serif !important;
    text-transform: none !important;
    font-weight: normal !important;
    box-sizing: border-box !important;
    box-shadow: 1px 1px 8px 0 rgba(0, 102, 179, 0.08);
}

.phone-email-row input[type="tel"] {
    background: rgba(255, 255, 255, 0.60) !important;
}

.phone-email-row input[type="email"] {
    background: rgba(255, 255, 255, 0.60) !important;
}

/* Select */
.form-inputs select {
    width: 100% !important;
    height: 50px !important;
    padding: 12px !important;
    border: 1px solid white !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    background: rgba(255, 255, 255, 0.60) !important;
    box-shadow: 1px 1px 8px 0 rgba(0, 102, 179, 0.08) !important;
    color: #FFA772 !important; /* Màu mặc định (placeholder) */
    cursor: pointer !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
    text-transform: none !important;
    font-weight: normal !important;
    box-sizing: border-box !important;
    
      appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    
    /* Tạo mũi tên custom */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFA772' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px !important;
}

/* Select khi đã chọn value */
.form-inputs select:valid {
    color: #F36F21 !important; /* Text sau khi chọn */
}

/* Focus states */
.form-inputs input:focus,
.phone-email-row input:focus,
.form-inputs select:focus {
    outline: none !important;
    border-color: #F36F21 !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

/* Placeholder styles - Text chưa nhập */
.form-inputs input::placeholder,
.phone-email-row input::placeholder {
    color: #FFA772 !important; /* Text placeholder */
    opacity: 1 !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
}

.form-inputs select option {
    color: #F36F21 !important;
    background: white !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
}

/* Select placeholder (first option) */
.form-inputs select option[value=""] {
    color: #FFA772 !important; /* Màu cho option placeholder */
}

/* Disclaimer */
.disclaimer-container {
    max-width: 900px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.form-disclaimer {
    font-size: 10px !important;
    color:  #949494 !important;
    margin: 28px 0 !important;
    text-align: left !important;
    padding: 0 !important;
    background: none !important;
    border-radius: 0 !important;
    width: 100% !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
    text-transform: none !important;
    font-weight: normal !important;
    font-style: italic !important;
    font-weight: 400 !important;
    line-height: 16px;
}

.form-disclaimer a {
    color:  #949494 !important;
    font-size: 10px !important;
    font-style: italic !important;
    font-weight: 400 !important;
    text-decoration: underline !important;
}

@media (max-width: 768px) {
.form-disclaimer {
    font-size: 8px !important;
}
.form-disclaimer a {
    font-size: 8px !important;
}

}
/* Button */
.btn-tim-hieu-them-2 {
    height: 48px;
    width: 265px !important;
    background: #F36F21 !important;
    color: white !important;
    padding: 12px 40px !important;
    border: 0.25px solid #D7D7D7 !important;
    border-radius: 1000px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
    text-transform: none !important;
    font-weight: normal !important;
    line-height: 24px !important;
}

.btn-tim-hieu-them-2:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3) !important;
}

.btn-tim-hieu-them-2:disabled,
.btn-tim-hieu-them-2.loading {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .admissions {
       padding: 24px 0px 24px 0px !important;
    }

    .admissions-form {
        padding: 32px 16px !important;
        margin: 8px !important;
        max-width: 100% !important;
        width: calc(100% - 16px) !important;
        border-radius: 15px !important;
    }

    .form-layout {
        max-width: 100% !important;
        gap: 16px !important;
    }

    .disclaimer-container {
        max-width: 100% !important;
    }

    .phone-email-row {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .form-title {
        width: 318px;
        font-size: 20px !important;
        margin-bottom: 28px !important;
    }

    .btn-tim-hieu-them-2 {
        padding: 12px 40px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .admissions-form {
        padding: 24px 16px !important;
        margin: 4px !important;
        width: calc(100% - 8px) !important;
    }

    .form-title {
        font-size: 20px !important;
    }
}
/* Form Messages - Success và Error */
.form-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message p {
    margin: 0;
    line-height: 1.4;
}

/* Animation cho message */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .form-message {
        font-size: 14px;
        padding: 12px 15px;
    }
}

/*==============================================================================  Schools Section ============================================================================== */
.schools {
    padding: 40px 160px 40px 160px !important;
    background: #fafafa;
}

.schools-intro {
    text-align: center;
    margin-bottom: 64px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.schools-intro h2 {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 32px;
    font-weight: 800;
    line-height: 40px;
}

.schools-intro p {
    color: #666;
    font-size: 16px;
    max-width: none;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main layout: 1 hàng ngang với 6 items */
.schools-main {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

/* Left side - reasons với background image và button bottom */


.reasons-image {
    display: none;
}

.reasons-cta {
    text-align: center;
    margin-top: auto;
}

.btn-register {
    height: 48px;
    width: 265px;
    background: #F36F21;
    color: white !important;
    padding: 10px 20px !important;
    border: 0.25px solid #D7D7D7;
    border-radius: 1000px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    text-transform: none !important;
    font-weight: normal !important;
}

.btn-register:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Schools cards - chia đều phần còn lại */
.school-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 250px;
    flex: 1;
    cursor: pointer;
}

.school-card:hover {
    transform: translateY(-5px);
}

/* Default content - visible by default */
.school-card-default {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: opacity 0.4s ease;
}

/* Hover content - hidden by default */
.school-card-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 8px;
    border: 0.5px solid #FFF;
    box-shadow: 1px 1px 4px 0 rgba(0, 102, 179, 0.20);
}

.school-card:hover .school-card-default {
    opacity: 0;
}

.school-card:hover .school-card-hover {
    opacity: 1;
}

.school-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px;
}

.school-card-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    line-height: 24px;
    margin: 0;
}

.school-card-title span{
    font-weight: 500;
}


/* Hover content styles */
.hover-number {
    font-size: 32px;
    font-weight: bold;
    line-height: 32px;
}

.hover-subtitle {
    font-size: 12px;
    color:  #949494;
    margin-bottom: 12px;
    line-height: 16px;
}

.hover-description {
    margin-bottom: 12px;
    font-size: 12px;
    color:  #949494;
    line-height: 16px;
}

/* ẨN HOÀN TOÀN TRÊN MOBILE */
@media (max-width: 768px) {
    .schools {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .schools {
        display: none !important;
    }
}
.school-card.active .school-card-default {
    opacity: 0;
}

.school-card.active .school-card-hover {
    opacity: 1;
}
/*==============================================================================  Schools Mobile Section - CHỈ HIỆN TRÊN MOBILE ============================================================================== */
.schools-mobi {
    padding: 24px 0px;
    background: #fafafa;
    display: none;
    width: 100%;
}

.schools-mobi-intro {
    text-align: center;
    margin-bottom: 32px;
    padding: 0 20px;
}

.schools-mobi-intro h2 {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: bold;
    line-height: 28px;
}

.schools-mobi-intro h2 span{
    color: #333;
    font-size: 20px;
    line-height: 24px;
}

.schools-mobi-intro p {
    color: #949494;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
}
/* Reasons section giống desktop - KHÔNG CÓ BUTTON */

/* Slider container - hiển thị 1.2 cards */
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* Thêm margin để có khoảng cách với button */
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    padding-left: 20px;
}

/* School cards TO và DÀI như ảnh 1 */
.school-card-mobi {
    width: 208px;
    height: 272px;
    /* Giảm từ 85% xuống 70% */
    flex-shrink: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    /* Giữ nguyên height để tạo hình chữ nhật dài */
    margin-right: 15px;
    cursor: pointer;
}

/* Default content */
.school-card-default-mobi {
    width: 100%;
    height: 100%;
    background-size: cover !important;  /* thay contain bằng cover */
    background-position: center center !important;
    background-repeat: no-repeat;
    position: relative;
    transition: opacity 0.4s ease;
}

/* Hover content */
.school-card-hover-mobi {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 8px;
    /* ÁP DỤNG CÁCH GIỐNG PC - không dùng pseudo-element */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    border: 0.5px solid #FFF;
    box-shadow: 1px 1px 4px 0 rgba(0, 102, 179, 0.20);
}

/* Active state */
.school-card-mobi.active .school-card-default-mobi {
    opacity: 0;
}

.school-card-mobi.active .school-card-hover-mobi {
    opacity: 1;
}

/* Overlay */
.school-card-overlay-mobi {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 32px;
}

.school-card-title-mobi {
    color: white;
    font-size: 16px;
    /* Tăng font size */
    font-weight: 600;
    text-align: left;
    line-height: 24px;
    margin: 0;
}

.school-card-title-mobi span{
    font-weight: 500;
}


/* Hover content styles - tăng size */
.hover-number-mobi {
    font-size: 28px;
    /* Tăng font size */
    font-weight: bold;
    line-height: 24px;
}

.hover-subtitle-mobi {
    font-size: 12px;
    /* Tăng font size */
    color:  #949494;
    margin-bottom: 8px;
    line-height: 16px;
}

.hover-description-mobi {
    font-size: 12px;
    /* Tăng font size */
    color: #888;
    line-height: 24px;
}


/* Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    /* Thêm margin bottom */
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff6b35;
    transform: scale(1.4);
}

/* Button đăng ký xuống dưới slider */
.btn-register-bottom {
    height: 48px;
    width: 265px !important;
    background: #F36F21;
    color: white !important;
    padding: 12px 40px !important;
    border-radius: 1000px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 90% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
    display: block !important;
    border: 0.25px solid #D7D7D7 !important;
    text-transform: none !important;
    font-weight: normal !important;
    line-height: 24px;
}


.btn-register-bottom:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .schools-mobi {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .schools-mobi {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hover-number-mobi {
        font-size: 28px !important;
    }

    .school-card-title-mobi {
        font-size: 16px !important;
    }

    .hover-subtitle-mobi,
    .hover-description-mobi {
        font-size: 12px !important;
    }
}
@media (max-width: 1024px) {
    .schools-mobi {
        display: block !important;
    }
    .school-card-title-mobi {
        font-size: 26px;
    }
    .hover-description-mobi {
    }
}

/* ============================================================================== Programs Section ============================================================================== */
.programs {
    background: #fafafa;
    padding: 40px 160px 40px 160px !important;
    overflow: hidden;
}

.programs .container {
    text-align: center; /* Center inline-block elements */
}

.programs h2 {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 48px;
    font-weight: 800;
    position: relative;
    display: inline-block; /* Chỉ chiếm width theo nội dung */
    text-align: left; /* Reset text alignment trong h2 */
}

/* Đường kẻ */
.programs h2::before,
.programs h2::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    background-color: #F36F21;
    width: 50vw;
    transform: translateY(-50%);
}

/* Đường kẻ bên trái */
.programs h2::before {
    right: 100%;
    margin-right: 20px;
}

/* Đường kẻ bên phải */
.programs h2::after {
    left: 100%;
    margin-left: 20px;
}

/* Alternative: Sử dụng flexbox để center */
.programs .container.flex-center {
    display: flex;
    justify-content: center;
}

.programs .container.flex-center h2 {
    text-align: center;
}


/* Programs Container - 3 Columns Layout */
.programs-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 48px;
}

/* Each column contains multiple categories */
.programs-column {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

/* Program Category */
.program-category {
    background: transparent;
}

.program-category h3 {
    color: #333;
    margin: 0 0 16px 0;
    padding: 0;
    font-size: 22px;
    font-weight: bold;
    background: transparent;
}

.program-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.program-list li {
    background: white;
    padding: 16px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ff6b35;
    font-weight: 500;
    margin: 0;
    transition: all 0.3s ease;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 12px;
    position: relative;
    border: none;
}

.program-list li::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    padding: 0.5px;
    background: linear-gradient(to right, #D9CCC5, #FFFFFF, #FFD0B5);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.program-list li a {
    text-align: left;
    font-size: 14px;
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    line-height: 16px;
    letter-spacing: -0.28px;
}

.program-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    background: #fff8f5;
}

.program-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cta-section {
    text-align: center;
    margin-top: 48px;
}

.cta-description {
    font-style: italic;
    color: #666;
    font-size: 12px;
}

.btn-download {
    height: 48px;
    width: 265px;
    background: #F36F21;
    color: white !important;
    padding: 15px 40px !important;
    border: none !important;
    border-radius: 1000px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    font-weight: normal !important;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .programs-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* ẨN HOÀN TOÀN TRÊN MOBILE */
@media (max-width: 768px) {
    .programs {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .programs {
        display: none !important;
    }
}
/*==============================================================================  Programs Mobile Section - CHỈ HIỆN TRÊN MOBILE ==============================================================================*/
/* Programs Mobile Section - CHỈ HIỆN TRÊN MOBILE */
.programs-mobi {
    background: #fafafa;
    padding: 24px 0px;
    display: none;
}

.programs-mobi-container {
    padding: 0 20px;
}

.programs-mobi-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.programs-mobi-title {
    color: black;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.programs-mobi-subtitle {
    color: #ff6b35;
    font-size: 28px;
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

/* Line kẻ cam 2 bên chữ ĐÀO TẠO */
.programs-mobi-subtitle::before,
.programs-mobi-subtitle::after {
    content: '';
    flex: 1;
    height: 2px;
    background: #ff6b35;
    max-width: 80px;
    /* Giới hạn độ dài line */
}

/* Programs grid - 2 cột */
.programs-grid-mobi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 32px;
}

.program-item-mobi {
    background: white;
    padding: 16px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ff6b35;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    position: relative;
    border: none;
}

.program-item-mobi::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    padding: 0.5px;
    background: linear-gradient(to right, #D9CCC5, #FFFFFF, #FFD0B5);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.program-item-mobi:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    background: #fff8f5;
}

.program-icon-mobi {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* CTA section */
.cta-section-mobi {
    text-align: center;
    margin-top: 32px;
}

.cta-description-mobi {
    font-style: italic;
    color: #666;
    margin-bottom: 24px;
    font-size: 14px;
}

.btn-download-mobi {
    height: 48px;
    width: 265px !important;
    background: #F36F21;
    color: white !important;
    padding: 12px 40px !important;
    border: 0.25px solid #D7D7D7 !important;
    border-radius: 25px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    line-height: 24px;
    max-width: 280px !important;
    text-transform: none !important;
    font-weight: normal !important;
}

.btn-download-mobi:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .programs-mobi {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .programs-mobi {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .programs-grid-mobi {
        gap: 6px;
    }

    .program-icon-mobi {
        width: 18px;
        height: 18px;
    }
    

    .programs-mobi-subtitle {
        font-size: 28px;
        gap: 16px;
    }

    .programs-mobi-subtitle::before,
    .programs-mobi-subtitle::after {
        max-width: 60px;
    }
}
@media (max-width: 1024px) {
    .programs-mobi {
        display: block !important;
    }
}
/*============================================================================== Campus Section ============================================================================== */


.campus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.campus-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 64px;
}

.campus h2 {
    font-size: 28px;
    margin-bottom: 28px;
    font-weight: 800;
}

.campus-locations {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.campus-location {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
}

.campus-location:hover {
    background: #c2886b;
}

.campus-location.active {
    background: #c2886b;
}

.btn-primary-2 {
    height: 48px;
    width: 265px;
    background: #F36F21;
    color: white !important;
    padding: 12px 40px !important;
    border: 0.25px solid #D7D7D7 !important;
    border-radius: 25px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: absolute !important;
    bottom: 48px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-decoration: none !important;
    display: inline-block !important;
    z-index: 10 !important;
    text-transform: none !important;
    font-weight: normal !important;
    line-height: 24px;
}

.btn-primary-2:hover {
    transform: translateX(-50%) translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3) !important;
    background: linear-gradient(45deg, #e55a2b, #ff7043) !important;
}

@media (max-width: 768px) {
    .campus {
        display: none !important;
    }
}

/*==============================================================================  Campus Mobile Section - CHỈ HIỆN TRÊN MOBILE ==============================================================================*/
/* Campus Mobile Section - CHỈ HIỆN TRÊN MOBILE */
.campus-mobi {
    background: #f8f9fa;
    padding: 24px 0;
    display: none;
}

.campus-mobi-container {
    padding: 0;
}

/* Campus card - full width */
.campus-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 0;
}


/* Virtual Tour Button - DƯỚI HÌNH, KHÔNG OVERLAY */
.virtual-tour-btn {
    height: 48px;
    width: 265px;
    background: #F36F21;
    color: white !important;
    padding: 6px 40px !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    display: block !important;
    text-transform: none !important;
    font-weight: normal !important;
    line-height: 24px;
}

.virtual-tour-btn:hover {
    background: #e55a2b;
}

/* Campus tabs */
.campus-tabs {
    display: flex;
    justify-content: space-between;
    background: white;
    padding: 8px 16px;
}

.campus-tab {
    flex: 1;
    text-align: center;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

.campus-tab.active {
    color: #ff6b35;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .campus-mobi {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .campus-mobi {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .campus-tabs {
        flex-wrap: wrap;
        gap: 5px;
    }

    .campus-tab {
        font-size: 13px;
        flex: 0 1 auto;
        min-width: 60px;
    }

    .campus-image {
        height: 220px;
    }

    .virtual-tour-btn {
        font-size: 16px;
        padding: 12px 15px;
    }
}

/*============================================================================== Experience Section ==============================================================================*/
.experience {
    background: #fafafa;
    padding: 40px 160px 40px 160px !important;
    text-align: center;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .experience {
    background: #fafafa;
    padding: 40px 40px 40px 40px !important;
    text-align: center;
    overflow: hidden;
    }
}
/* Title desktop */
.experience h2 {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 48px;
    font-weight: bold;
}

.experience h2 span {
    color: #333;
}

/* Title mobile - ẩn mặc định */
.experience-title-mobi {
    display: none;
    text-align: center;
    margin-bottom: 48px;
}

.experience-title-mobi .line1 {
    color: #333;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 40px;
}

.experience-title-mobi .line2 {
    color: #ff6b35;
    font-size: 28px;
    font-weight: 800;
     line-height: 40px;
}

/* Gallery Container */
.experience-gallery-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.experience-gallery {
    display: flex;
    gap: 24px;
    animation: scroll-left 15s linear infinite;
    width: calc(300px * 10 + 24px * 9);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 5 - 24px * 5));
    }
}

.experience-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 300px;
    height: 200px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    animation-play-state: paused;
}

.experience-gallery:hover {
    animation-play-state: paused;
}

.experience-image {
    width: 343px;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}



.experience-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    color: white;
    padding: 16px;
    text-align: left;
}

.experience-title {
    font-size: 14px;
    margin-bottom: 0.48px;
    line-height: 1.2;
}

.experience-subtitle {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Ẩn title desktop, hiện title mobile */
    .experience h2 {
        display: none;
    }
    
    .experience-title-mobi {
        display: block;
    }
    
    .experience-card {
        width: 250px;
        height: 160px;
    }
    
    .experience-gallery {
        width: calc(250px * 10 + 24px * 9);
    }
    
    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 5 - 24px * 5));
        }
    }
    
    .experience-title {
        font-size: 12px;
    }
    
    .experience-subtitle {
        font-size: 11px;
    }

    .experience {
        padding: 24px 0 !important;
    }
}

/*============================================================================== Contact Form Section ==============================================================================*/
.contact-form {
    background: #fafafa;
    padding: 40px 160px 40px 160px !important;
    color: white !important;
    position: relative !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
}

@media (max-width: 1024px) {
    .contact-form {
    background: #fafafa;
    padding: 40px 40px 40px 40px !important;
    color: white !important;
    position: relative !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
    }
}

.contact-form .container {
    position: relative !important;
    z-index: 2 !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.contact-form h2 {
    text-align: center !important;
    font-size: 20px !important;
    margin-bottom: 28px !important;
    font-weight: bold !important;
    color: white !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
    text-transform: none !important;
    line-height: 24px !important;
}

/* Title mobile - 3 dòng riêng biệt - ẩn mặc định */
.contact-form-title-mobile {
    display: none;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.contact-form-title-mobile .title-line {
    color: white;
    font-weight: bold;
    line-height: 28px;
    margin: 0;
}

.contact-form-title-mobile .title-line-1 {
    font-size: 20px;
}

.contact-form-title-mobile .title-line-2 {
    font-size: 20px;
}

.contact-form-title-mobile .title-line-3 {
    font-size: 20px;
}

/* Mobile: Ẩn title PC, hiển thị title mobile */
@media (max-width: 768px) {
    .contact-form h2 {
        display: none !important;
    }
    
    .contact-form-title-mobile {
        display: block !important;
    }
}

.form-container form {
    position: relative !important;
    z-index: 2 !important;
}

.form-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
}

.form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    width: 100% !important;
}

.form-group {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin-bottom: 0px !important;
}

/* === BASE STYLE CHO INPUT & SELECT === */
.form-group input, 
.form-group select {
    width: 100% !important;
    height: 50px !important;
    padding: 0 15px !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    background: #FFFFFF !important;
    transition: all 0.3s ease !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
    text-transform: none !important;
    box-sizing: border-box !important;
    outline: none !important;
    /* Màu placeholder - nhạt */
    color: #f36f21 !important;
    font-weight: normal !important;
}

/* === PLACEHOLDER === */
.form-group input::placeholder {
    color: #f36f21 !important;
    opacity: 0.8 !important;
    font-weight: normal !important;
}

/* === TEXT ĐÃ NHẬP - ĐẬM === */
.form-group input:not(:placeholder-shown) {
    color: #E65100 !important;
    opacity: 1 !important;
    font-weight: 500 !important;
}

/* === SELECT ĐÃ CHỌN - ĐẬM === */
.form-group select:valid {
    color: #E65100 !important;
    opacity: 1 !important;
    font-weight: 500 !important;
}

/* === FOCUS STATE === */
.form-group input:focus, 
.form-group select:focus {
    border: 1px solid #FF6B35 !important;
    box-shadow: none !important;
    transform: none !important;
}

/* === SELECT SPECIFIC === */
.form-group select {
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f36f21' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 16px !important;
    padding-right: 45px !important;
}

/* === SELECT OPTIONS === */
.form-group select option,
.form-group select optgroup {
    background: #FFFFFF !important;
    color: #E65100 !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
}

/* === BUTTON === */
.btn-submit {
    height: 48px;
    width: 265px !important;
    background: white !important;
    color: #ff6b35 !important;
    padding: 12px 40px !important;
    border: 0.25px solid #D7D7D7 !important;
    border-radius: 30px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    display: block !important;
    margin: 32px auto 0 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2) !important;
    text-transform: none !important;
    font-weight: normal !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
    line-height: 24px !important;
}

.btn-submit:hover {
    background: #ff6b35 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4) !important;
}
/* Responsive Design - FIXED */
@media (max-width: 768px) {
    .contact-form {
        padding: 24px 0 !important;
    }
    
    .contact-form .container {
            padding: 0 15px !important;
        }
    
    .contact-form h2 {
        font-size: 20px !important;
        margin-bottom: 40px !important;
        line-height: 28px !important;
        padding: 0 10px !important;
    }
    
    .form-container {
        padding: 30px 20px !important;
        margin: 0 !important;
        border-radius: 15px !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    
    .form-grid {
        gap: 8px !important;
    }
    
    .form-group input,
    .form-group select {
        height: 50px !important;
        font-size: 16px !important;
        padding: 0 15px !important;
    }
    
    .btn-submit {
        padding: 12px 40px !important;
        font-size: 16px !important;
        margin: 24px auto 0 !important;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 24px 0 !important;
    }
    
    .contact-form .container {
        padding: 0 10px !important;
    }
    
    .contact-form h2 {
        font-size: 20px !important;
        margin-bottom: 24px !important;
        padding: 0 5px !important;
    }
    
    .form-container {
        padding: 20px 15px !important;
        border-radius: 12px !important;
    }
    
    .form-group input,
    .form-group select {
        height: 45px !important;
        font-size: 15px !important;
        padding: 0 12px !important;
    }
    
    .form-group select {
        padding-right: 35px !important;
    }
    
    .btn-submit {
        margin: 40px auto 0 !important;
    }
}

/* Fix overflow issues */
.form-container,
.form-grid,
.form-row,
.form-group {
    overflow: visible !important;
}

/* Ensure no horizontal scroll */
* {
    max-width: 100% !important;
}

.form-row > .form-group {
    min-width: 0 !important;
    flex: 1 !important;
}
/* CSS cho Alumni Section - Sử dụng đơn vị px */
.news-section {
    padding: 40px 160px 40px 160px !important;
    background: #fafafa;
}

@media (max-width: 1024px) {
    .news-section {
        padding: 40px 40px 40px 40px !important;
        background: #fafafa;
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.news-title span:first-child {
    color: #ff6b35;
}

.news-title span:last-child {
    color: #333;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.news-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

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

.news-card-content {
    padding: 16px;
    text-align: left;
}

.news-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 12px;
    margin-top: 0px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* THAY ĐỔI: từ 3 thành 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* Thêm để đảm bảo có dấu ... */
    height: calc(1.4em * 2); /* Cố định chiều cao cho 2 dòng */
}

.news-card-link:hover .news-card-title {
    color: #ff6b35;
    text-decoration: none;
}

.news-card-meta {
    display: flex;
    align-items: center;
}

.news-card-date {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
}

/* Ẩn category và excerpt cho design này */
.news-card-category,
.news-card-excerpt {
    display: none;
}

.news-more {
    text-align: center;
    margin-top: 40px;
}

.btn-view-more {
    height: 48px;
    width: 265px;
    display: inline-block !important;
    background: transparent !important;
    color: #ff6b35 !important;
    padding: 12px 40px !important;
    border: 2px solid #ff6b35 !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    font-weight: normal !important;
    line-height: 24px;
}


.btn-view-more:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    text-decoration: none !important;
}

.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .news-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .news-card-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-title {
        font-size: 28px;
    }
    
    .news-section {
        padding: 24px 0 !important;
    }
    
    .news-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Animation cho scroll */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.news-more {
    text-align: center;
    margin-top: 40px;
}


/* Responsive */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .news-title {
        font-size: 21px;
        margin-bottom: 30px;
    }
    
    .news-card-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-title {
        font-size: 21px;
    }
    
    .news-section {
        padding: 40px 0;
    }
    
    .news-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Animation cho scroll */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Ẩn desktop version trên mobile */
@media (max-width: 768px) {
    .news-section {
        display: none !important;
    }
}

/* Mobile Slider Styles */
.news-section-mobile {
    display: none; /* Ẩn mặc định */
    padding: 24px 0px;
    background: #fafafa;
}

@media (max-width: 768px) {
    .news-section-mobile {
        display: block !important; /* Hiện trên mobile */
    }
}

.news-title-mobile {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #F36F21;
    line-height: 40px;
}

.news-slider-container {
    position: relative;
    overflow: hidden;
}

.news-slider {
    display: flex;
    transition: transform 0.3s ease;
    gap: 15px;
}

.news-slide {
    flex: 0 0 280px; /* Fixed width cho mỗi slide */
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.news-slide-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-slide-content {
    padding: 16px;
}

.news-slide-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(1.4em * 2);
}

.news-slide-date {
    color: #999;
    font-size: 12px;
    font-weight: 400;
    font-style: italic;
}

.news-slide-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-slide-link:hover .news-slide-title {
    color: #ff6b35;
}

/* Slider Navigation - Chỉ giữ dots */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Dots indicator */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: #ff6b35;
}

.news-more-mobile {
    text-align: center;
}

.btn-view-more-mobile {
    height: 48px;
    width: 265px !important;
    display: inline-block;
    background: transparent;
    color: #ff6b35;
    padding: 12px 30px;
    border: 2px solid #ff6b35;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: none;
    font-weight: normal;
}

.btn-view-more-mobile:hover {
    background: #ff6b35;
    color: white;
    text-decoration: none;
}