/* ========================================
   HOMEPAGE BUILDER - MẦM NON STYLE
   Phong cách vui nhộn, đầy màu sắc
======================================== */

:root {
    --mn-primary: #FF6B6B;
    --mn-primary-dark: #E85555;
    --mn-secondary: #4ECDC4;
    --mn-accent: #FFE66D;
    --mn-purple: #A78BFA;
    --mn-pink: #F472B6;
    --mn-orange: #FB923C;
    --mn-green: #34D399;
    --mn-blue: #60A5FA;
    --mn-sky: #38BDF8;
    --mn-text: #2D3748;
    --mn-text-light: #718096;
    --mn-bg-cream: #FFF9F0;
    --mn-bg-mint: #ECFDF5;
    --mn-bg-lavender: #F5F3FF;
    --mn-bg-peach: #FFF1F2;
    --mn-bg-sky: #F0F9FF;
    --mn-shadow: 0 10px 40px rgba(0,0,0,0.08);
    --mn-shadow-hover: 0 20px 60px rgba(0,0,0,0.12);
    --mn-radius: 24px;
    --mn-radius-lg: 40px;
}

/* Reset spacing */
.home-hero,
.home-about,
.home-programs,
.home-facilities,
.home-activities,
.home-menu,
.home-teachers,
.home-testimonials,
.home-news,
.home-cta,
.home-gallery,
.home-videos,
.home-registration,
.home-slider,
.home-faq {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.home-slider {
    padding: 0;
}

/* ========================================
   DECORATIVE ELEMENTS
======================================== */
.section-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.decoration-cloud {
    width: 120px;
    height: 60px;
    background: rgba(255,255,255,0.6);
    border-radius: 60px;
}

.decoration-cloud::before,
.decoration-cloud::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.decoration-cloud::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 20px;
}

.decoration-cloud::after {
    width: 70px;
    height: 70px;
    top: -35px;
    right: 20px;
}

/* Wave dividers */
.wave-top,
.wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top {
    top: 0;
}

.wave-bottom {
    bottom: 0;
    transform: rotate(180deg);
}

.wave-top svg,
.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* ========================================
   HERO SECTION - Gradient vui nhộn
======================================== */
.home-hero {
    background: linear-gradient(135deg, #FFA500 0%, var(--mn-orange) 50%, var(--mn-accent) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

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

.home-hero__overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 100%);
}

.home-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.home-hero__content {
    max-width: 100%;
}

.home-hero__title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.15);
}

.home-hero__title span {
    display: inline-block;
    background: linear-gradient(90deg, var(--mn-accent) 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero__desc {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
    margin-bottom: 32px;
}

.home-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #fff;
    color: var(--mn-primary);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-hero__btn::before {
    content: '🎈';
    font-size: 24px;
}

.home-hero__btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.home-hero__media {
    position: relative;
}

.home-hero__media img {
    border-radius: var(--mn-radius-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.home-hero__media:hover img {
    transform: rotate(0deg) scale(1.02);
}

.home-hero__media::before {
    content: '⭐';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 48px;
    animation: spin 10s linear infinite;
}

.home-hero__media::after {
    content: '🌈';
    position: absolute;
    bottom: -15px;
    left: -15px;
    font-size: 42px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   ABOUT SECTION - Cream background
======================================== */
.home-about {
    background: var(--mn-bg-cream);
    position: relative;
}

.home-about::before {
    content: '🏫';
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 80px;
    opacity: 0.15;
}

.home-about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home-about__title {
    font-size: 42px;
    font-weight: 800;
    color: var(--mn-text);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.home-about__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, var(--mn-primary), #FFA500);
    border-radius: 3px;
}

.home-about__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--mn-text-light);
    margin-bottom: 32px;
}

.home-about__text p {
    margin-bottom: 16px;
}

.home-about__highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.home-about__highlight {
    background: #fff;
    padding: 24px;
    border-radius: var(--mn-radius);
    box-shadow: var(--mn-shadow);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    text-align: center;
}

.home-about__highlight:nth-child(1) {border-color: #FFA500;}
.home-about__highlight:nth-child(2) { border-color: var(--mn-secondary); }
.home-about__highlight:nth-child(3) {border-color: #FFA500;}
.home-about__highlight:nth-child(4) { border-color: var(--mn-green); }

.home-about__highlight:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: var(--mn-shadow-hover);
}

.home-about__highlight img {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
}

.home-about__highlight h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--mn-text);
    margin-bottom: 8px;
}

.home-about__highlight h3::before {
    display: block;
    font-size: 36px;
    margin-bottom: 8px;
}

.home-about__highlight:nth-child(1) h3::before { content: '🏆'; }
.home-about__highlight:nth-child(2) h3::before { content: '👶'; }
.home-about__highlight:nth-child(3) h3::before { content: '👩‍🏫'; }
.home-about__highlight:nth-child(4) h3::before { content: '💯'; }

.home-about__highlight p {
    font-size: 14px;
    color: var(--mn-text-light);
    line-height: 1.5;
}

.home-about__media {
    position: relative;
}

.home-about__media img {
    border-radius: var(--mn-radius-lg);
    box-shadow: var(--mn-shadow);
}

.home-about__media::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--mn-secondary), var(--mn-green));
    border-radius: var(--mn-radius-lg);
    z-index: -1;
}

/* ========================================
   PROGRAMS SECTION - Colorful cards
======================================== */
.home-programs {
    background: linear-gradient(180deg, #fff 0%, var(--mn-bg-lavender) 100%);
    text-align: center;
}

.home-programs::before {
    content: '📚 🎨 🎵 🎭 ⚽ 🧩';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    letter-spacing: 20px;
    opacity: 0.3;
}

.home-programs__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.home-programs__title {
    font-size: 42px;
    font-weight: 800;
    color: var(--mn-text);
    margin-bottom: 12px;
}

.home-programs__title::before {
    content: '🎓';
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
}

.home-programs__desc {
    font-size: 18px;
    color: var(--mn-text-light);
    max-width: 600px;
    margin: 0 auto 48px;
}

.home-programs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.home-programs__item {
    background: #fff;
    padding: 32px 24px;
    border-radius: var(--mn-radius);
    box-shadow: var(--mn-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.home-programs__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
}

.home-programs__item:nth-child(1)::before {background: linear-gradient(90deg, #FFA500, var(--mn-pink));}
.home-programs__item:nth-child(2)::before { background: linear-gradient(90deg, var(--mn-orange), var(--mn-accent)); }
.home-programs__item:nth-child(3)::before { background: linear-gradient(90deg, var(--mn-secondary), var(--mn-green)); }
.home-programs__item:nth-child(4)::before { background: linear-gradient(90deg, var(--mn-purple), var(--mn-pink)); }
.home-programs__item:nth-child(5)::before { background: linear-gradient(90deg, var(--mn-blue), var(--mn-sky)); }
.home-programs__item:nth-child(6)::before { background: linear-gradient(90deg, var(--mn-green), var(--mn-secondary)); }

.home-programs__item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--mn-shadow-hover);
}

.home-programs__item img {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.home-programs__item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--mn-text);
    margin-bottom: 12px;
}

.home-programs__item h3::before {
    display: inline-block;
    margin-right: 8px;
    font-size: 24px;
}

.home-programs__item:nth-child(1) h3::before { content: '🍼'; }
.home-programs__item:nth-child(2) h3::before { content: '🌱'; }
.home-programs__item:nth-child(3) h3::before { content: '🌿'; }
.home-programs__item:nth-child(4) h3::before { content: '🍃'; }
.home-programs__item:nth-child(5) h3::before { content: '🌳'; }
.home-programs__item:nth-child(6) h3::before { content: '🎯'; }

.home-programs__item p {
    font-size: 15px;
    color: var(--mn-text-light);
    line-height: 1.6;
}

/* ========================================
   FACILITIES SECTION - Gallery style
======================================== */
.home-facilities {
    background: var(--mn-bg-mint);
    position: relative;
}

.home-facilities::before {
    content: '🏠';
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 100px;
    opacity: 0.1;
}

.home-facilities__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.home-facilities__title {
    font-size: 42px;
    font-weight: 800;
    color: var(--mn-text);
    margin-bottom: 12px;
}

.home-facilities__title::before {
    content: '🏡';
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
}

.home-facilities__desc {
    font-size: 18px;
    color: var(--mn-text-light);
    max-width: 600px;
    margin: 0 auto 48px;
}

.home-facilities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-facilities__item {
    background: #fff;
    border-radius: var(--mn-radius);
    overflow: hidden;
    box-shadow: var(--mn-shadow);
    transition: all 0.4s ease;
    text-align: left;
}

.home-facilities__item:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: var(--mn-shadow-hover);
}

.home-facilities__item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-facilities__item:hover img {
    transform: scale(1.1);
}

.home-facilities__item h3,
.home-facilities__item p {
    padding: 0 20px;
}

.home-facilities__item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--mn-text);
    margin: 16px 0 8px;
} 

.home-facilities__item h3::before {
    margin-right: 8px;
}

.home-facilities__item:nth-child(1) h3::before { content: '🏫'; }
.home-facilities__item:nth-child(2) h3::before { content: '🎡'; }
.home-facilities__item:nth-child(3) h3::before { content: '🎹'; }
.home-facilities__item:nth-child(4) h3::before { content: '🤸'; }
.home-facilities__item:nth-child(5) h3::before { content: '🍳'; }
.home-facilities__item:nth-child(6) h3::before { content: '🛏️'; }

.home-facilities__item p {
    font-size: 14px;
    color: var(--mn-text-light);
    line-height: 1.5;
    padding-bottom: 20px;
}

/* ========================================
   ACTIVITIES SECTION - Fun cards
======================================== */
.home-activities {
    background: linear-gradient(135deg, var(--mn-bg-peach) 0%, var(--mn-bg-cream) 100%);
    position: relative;
}

.home-activities::before {
    content: '🎉🎊🎈🎁';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    letter-spacing: 10px;
    opacity: 0.2;
}

.home-activities__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.home-activities__title {
    font-size: 42px;
    font-weight: 800;
    color: var(--mn-text);
    margin-bottom: 12px;
}

.home-activities__title::before {
    content: '🎪';
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
}

.home-activities__desc {
    font-size: 18px;
    color: var(--mn-text-light);
    max-width: 600px;
    margin: 0 auto 48px;
}

.home-activities__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.home-activities__item {
    background: #fff;
    border-radius: var(--mn-radius);
    overflow: hidden;
    box-shadow: var(--mn-shadow);
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 200px 1fr;
    text-align: left;
}

.home-activities__item:hover {
    transform: translateY(-8px);
    box-shadow: var(--mn-shadow-hover);
}

.home-activities__item img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
}

.home-activities__item > div {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-activities__item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--mn-text);
    margin-bottom: 12px;
}

.home-activities__item:nth-child(1) h3::before { content: '🎑 '; }
.home-activities__item:nth-child(2) h3::before { content: '🏃 '; }
.home-activities__item:nth-child(3) h3::before { content: '🚌 '; }
.home-activities__item:nth-child(4) h3::before { content: '🎭 '; }

.home-activities__item p {
    font-size: 15px;
    color: var(--mn-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.home-activities__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--mn-primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.home-activities__link::after {
    content: '→';
}

.home-activities__link:hover {
    gap: 12px;
}

/* ========================================
   MENU SECTION - Weekly table
======================================== */
.home-menu {
    background: linear-gradient(180deg, #fff 0%, var(--mn-bg-sky) 100%);
    position: relative;
}

.home-menu::before {
    content: '🍎🥕🥦🍗🥛';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    letter-spacing: 15px;
    opacity: 0.2;
}

.home-menu__container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.home-menu__title {
    font-size: 42px;
    font-weight: 800;
    color: var(--mn-text);
    margin-bottom: 12px;
}

.home-menu__title::before {
    content: '🍽️';
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
}

.home-menu__desc {
    font-size: 18px;
    color: var(--mn-text-light);
    max-width: 600px;
    margin: 0 auto 48px;
}

.home-menu__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.home-menu__item {
    background: #fff;
    border-radius: 20px;
    padding: 24px 20px;
    width: calc(20% - 16px);
    min-width: 160px;
    box-shadow: var(--mn-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home-menu__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.home-menu__item:nth-child(1)::before { background: var(--mn-primary); }
.home-menu__item:nth-child(2)::before {background: #FFA500;}
.home-menu__item:nth-child(3)::before { background: var(--mn-secondary); }
.home-menu__item:nth-child(4)::before { background: var(--mn-purple); }
.home-menu__item:nth-child(5)::before { background: var(--mn-green); }

.home-menu__item:hover {
    transform: translateY(-6px);
    box-shadow: var(--mn-shadow-hover);
}

.home-menu__item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--mn-text);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px dashed #eee;
}

.home-menu__item h3::before {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
}

.home-menu__item:nth-child(1) h3::before { content: '🌞'; }
.home-menu__item:nth-child(2) h3::before { content: '🌈'; }
.home-menu__item:nth-child(3) h3::before { content: '⭐'; }
.home-menu__item:nth-child(4) h3::before { content: '🌸'; }
.home-menu__item:nth-child(5) h3::before { content: '🎈'; }

.home-menu__item p {
    font-size: 13px;
    color: var(--mn-text-light);
    line-height: 1.5;
    margin-bottom: 8px;
}

.home-menu__item p strong {
    color: var(--mn-text);
}

.home-menu__pdf {
    margin-top: 40px;
}

.home-menu__pdf a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--mn-primary), var(--mn-orange));
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
}

.home-menu__pdf a::before {
    content: '📄';
    font-size: 20px;
}

.home-menu__pdf a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.5);
}

/* ========================================
   TEACHERS SECTION - Team cards
======================================== */
.home-teachers {
    background: var(--mn-bg-lavender);
    position: relative;
}

.home-teachers::before {
    content: '👩‍🏫👨‍🏫';
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 60px;
    opacity: 0.15;
}

.home-teachers__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.home-teachers__title {
    font-size: 42px;
    font-weight: 800;
    color: var(--mn-text);
    margin-bottom: 12px;
}

.home-teachers__title::before {
    content: '💜';
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
}

.home-teachers__desc {
    font-size: 18px;
    color: var(--mn-text-light);
    max-width: 600px;
    margin: 0 auto 48px;
}

.home-teachers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.home-teachers__item {
    background: #fff;
    border-radius: var(--mn-radius);
    padding: 32px 24px;
    box-shadow: var(--mn-shadow);
    transition: all 0.4s ease;
    text-align: center;
}

.home-teachers__item:hover {
    transform: translateY(-10px);
    box-shadow: var(--mn-shadow-hover);
}

.home-teachers__item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--mn-bg-lavender);
    margin-bottom: 16px;
    transition: transform 0.4s ease;
}

.home-teachers__item:hover img {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--mn-purple);
}

.home-teachers__item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--mn-text);
    margin-bottom: 4px;
}

.home-teachers__position {
    font-size: 14px;
    color: #FFA500;
    font-weight: 600;
    margin-bottom: 12px;
}

.home-teachers__item p:not(.home-teachers__position) {
    font-size: 14px;
    color: var(--mn-text-light);
    line-height: 1.5;
}

/* ========================================
   TESTIMONIALS SECTION - Quote cards
======================================== */
.home-testimonials {
    background: linear-gradient(135deg, #FFA500 0%, #ecc782 100%);
    position: relative;
}

.home-testimonials::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 50px;
    font-size: 200px;
    font-family: Georgia, serif;
    color: rgba(255,255,255,0.1);
    line-height: 1;
}

.home-testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.home-testimonials__title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 48px;
}

.home-testimonials__title::before {
    content: '💬';
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
}

.home-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.home-testimonials__item {
    background: #fff;
    border-radius: var(--mn-radius);
    padding: 32px;
    box-shadow: var(--mn-shadow);
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
}

.home-testimonials__item::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: var(--mn-secondary);
    opacity: 0.3;
    line-height: 1;
}

.home-testimonials__item:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: var(--mn-shadow-hover);
}

.home-testimonials__item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--mn-secondary);
    margin-bottom: 16px;
}

.home-testimonials__item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--mn-text);
    margin-bottom: 12px;
}

.home-testimonials__item p {
    font-size: 15px;
    color: var(--mn-text-light);
    line-height: 1.7;
    font-style: italic;
}

/* ========================================
   NEWS SECTION - Blog cards
======================================== */
.home-news {
    background: #fff;
    position: relative;
}

.home-news::before {
    content: '📰';
    position: absolute;
    top: 40px;
    left: 50px;
    font-size: 80px;
    opacity: 0.1;
}

.home-news__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.home-news__title {
    font-size: 42px;
    font-weight: 800;
    color: var(--mn-text);
    margin-bottom: 12px;
}

.home-news__title::before {
    content: '📢';
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
}

.home-news__desc {
    font-size: 18px;
    color: var(--mn-text-light);
    max-width: 600px;
    margin: 0 auto 48px;
}

.home-news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.home-news__item {
    background: #fff;
    border-radius: var(--mn-radius);
    overflow: hidden;
    box-shadow: var(--mn-shadow);
    transition: all 0.4s ease;
    border: none;
    padding: 0;
}

.home-news__item:hover {
    transform: translateY(-10px);
    box-shadow: var(--mn-shadow-hover);
}

.home-news__link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 0;
}

.home-news__thumb {
    overflow: hidden;
    height: 200px;
}

.home-news__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-news__item:hover .home-news__thumb img {
    transform: scale(1.1);
}

.home-news__link > *:not(.home-news__thumb) {
    padding: 0 20px;
}

.home-news__item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--mn-text);
    margin: 20px 20px 8px;
    line-height: 1.4;
    text-align: left;
}

.home-news__date {
    display: block;
    font-size: 13px;
    color: var(--mn-text-light);
    margin: 0 20px 20px;
    text-align: left;
}

.home-news__date::before {
    content: '📅 ';
}

/* ========================================
   CTA SECTION - Final call
======================================== */
.home-cta {
    background: linear-gradient(135deg, #FFA500 0%, #ecc782 100%);
    text-align: center;
    position: relative;
    padding: 100px 20px;
}

.home-cta::before,
.home-cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.home-cta::before {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
}

.home-cta::after {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
}

.home-cta__overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 100%);
}

.home-cta__container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home-cta__title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.15);
}

.home-cta__title::before {
    content: '🌟';
    display: block;
    font-size: 56px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.home-cta__desc {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 36px;
    line-height: 1.6;
}

.home-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: #fff;
    color: var(--mn-purple);
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-cta__btn::before {
    content: '📞';
    font-size: 24px;
}

.home-cta__btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 70px rgba(0,0,0,0.3);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .home-hero__container,
    .home-about__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-programs__grid,
    .home-facilities__grid,
    .home-teachers__grid,
    .home-news__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-activities__grid {
        grid-template-columns: 1fr;
    }

    .home-activities__item {
        grid-template-columns: 180px 1fr;
    }
}

@media (max-width: 768px) {
    .home-hero,
    .home-about,
    .home-programs,
    .home-facilities,
    .home-activities,
    .home-menu,
    .home-teachers,
    .home-testimonials,
    .home-news,
    .home-cta {
        padding: 60px 16px;
    }

    .home-hero__title {
        font-size: 36px;
    }

    .home-hero__desc {
        font-size: 17px;
    }

    .home-about__title,
    .home-programs__title,
    .home-facilities__title,
    .home-activities__title,
    .home-menu__title,
    .home-teachers__title,
    .home-testimonials__title,
    .home-news__title,
    .home-cta__title {
        font-size: 32px;
    }

    .home-about__highlights {
        grid-template-columns: 1fr;
    }

    .home-programs__grid,
    .home-facilities__grid,
    .home-teachers__grid,
    .home-testimonials__grid,
    .home-news__grid {
        grid-template-columns: 1fr;
    }

    .home-activities__item {
        grid-template-columns: 1fr;
    }

    .home-activities__item img {
        height: 200px;
    }

    .home-menu__item {
        width: calc(50% - 8px);
    }

    .home-cta__title {
        font-size: 28px;
    }

    .home-cta__btn {
        padding: 16px 32px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .home-hero__title {
        font-size: 28px;
    }

    .home-about__title,
    .home-programs__title,
    .home-facilities__title,
    .home-activities__title,
    .home-menu__title,
    .home-teachers__title,
    .home-testimonials__title,
    .home-news__title {
        font-size: 26px;
    }

    .home-menu__item {
        width: 100%;
    }

    .home-cta__title {
        font-size: 24px;
    }
}

/* ========================================
   GALLERY SECTION - Thư viện ảnh
======================================== */
.home-gallery {
    background: var(--mn-bg-cream);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.home-gallery::before {
    content: '📷 🖼️ 🎨';
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 40px;
    letter-spacing: 15px;
    opacity: 0.2;
}

.home-gallery__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.home-gallery__title {
    font-size: 42px;
    font-weight: 800;
    color: var(--mn-text);
    margin-bottom: 12px;
}

.home-gallery__title::before {
    content: '📸';
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
}

.home-gallery__desc {
    font-size: 18px;
    color: var(--mn-text-light);
    max-width: 600px;
    margin: 0 auto 48px;
}

.home-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-gallery__item {
    position: relative;
    border-radius: var(--mn-radius);
    overflow: hidden;
    box-shadow: var(--mn-shadow);
    transition: all 0.4s ease;
}

.home-gallery__item:nth-child(1),
.home-gallery__item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

.home-gallery__item:hover {
    transform: scale(1.02);
    box-shadow: var(--mn-shadow-hover);
    z-index: 10;
}

.home-gallery__link {
    display: block;
    position: relative;
    height: 100%;
}

.home-gallery__link img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-gallery__item:hover .home-gallery__link img {
    transform: scale(1.1);
}

.home-gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.8), rgba(167, 139, 250, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-gallery__item:hover .home-gallery__overlay {
    opacity: 1;
}

.home-gallery__icon {
    font-size: 48px;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.home-gallery__item:hover .home-gallery__icon {
    transform: scale(1);
}

.home-gallery__caption {
    padding: 12px 16px;
    background: #fff;
    font-size: 13px;
    color: var(--mn-text-light);
    text-align: center;
    margin: 0;
}

/* Lightbox */
.home-gallery__lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.home-gallery__lightbox.active {
    opacity: 1;
    visibility: visible;
}

.home-gallery__lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.home-gallery__lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.home-gallery__lightbox-caption {
    color: #fff;
    font-size: 16px;
    margin-top: 16px;
}

.home-gallery__lightbox-close,
.home-gallery__lightbox-prev,
.home-gallery__lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-gallery__lightbox-close {
    top: 20px;
    right: 20px;
}

.home-gallery__lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.home-gallery__lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.home-gallery__lightbox-close:hover,
.home-gallery__lightbox-prev:hover,
.home-gallery__lightbox-next:hover {
    background: var(--mn-primary);
}

/* ========================================
   VIDEOS SECTION - Thư viện video
======================================== */
.home-videos {
    background: linear-gradient(180deg, var(--mn-bg-lavender) 0%, #fff 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.home-videos::before {
    content: '🎬 🎥 📹';
    position: absolute;
    top: 30px;
    left: 50px;
    font-size: 40px;
    letter-spacing: 15px;
    opacity: 0.2;
}

.home-videos__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.home-videos__title {
    font-size: 42px;
    font-weight: 800;
    color: var(--mn-text);
    margin-bottom: 12px;
}

.home-videos__title::before {
    content: '🎬';
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
}

.home-videos__desc {
    font-size: 18px;
    color: #FFA500;
    max-width: 600px;
    margin: 0 auto 48px;
}

.home-videos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.home-videos__item {
    background: #fff;
    border-radius: var(--mn-radius);
    overflow: hidden;
    box-shadow: var(--mn-shadow);
    transition: all 0.4s ease;
}

.home-videos__item:hover {
    transform: translateY(-10px);
    box-shadow: var(--mn-shadow-hover);
}

.home-videos__thumbnail {
    position: relative;
    height: 200px;
    cursor: pointer;
    overflow: hidden;
}

.home-videos__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-videos__item:hover .home-videos__thumbnail img {
    transform: scale(1.1);
}

.home-videos__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.home-videos__item:hover .home-videos__play {
    background: rgba(255, 107, 107, 0.7);
}

.home-videos__play-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--mn-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.home-videos__item:hover .home-videos__play-icon {
    transform: scale(1.1);
}

.home-videos__info {
    padding: 20px;
    text-align: left;
}

.home-videos__info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--mn-text);
    margin-bottom: 8px;
}

.home-videos__info p {
    font-size: 14px;
    color: var(--mn-text-light);
    line-height: 1.5;
}

/* Video Modal */
.home-videos__modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.home-videos__modal.active {
    opacity: 1;
    visibility: visible;
}

.home-videos__modal-content {
    width: 90%;
    max-width: 900px;
    position: relative;
}

.home-videos__modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.home-videos__modal-close:hover {
    background: var(--mn-primary);
}

.home-videos__modal-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
}

.home-videos__modal-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
   REGISTRATION SECTION - Form đăng ký
======================================== */
.home-registration {
    background: linear-gradient(135deg, var(--mn-primary) 0%, var(--mn-purple) 50%, var(--mn-pink) 100%);
    padding: 100px 20px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.home-registration__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FFA500 0%, #ecc782 100%);
}

.home-registration__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home-registration__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home-registration__info {
    color: #fff;
}

.home-registration__title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.15);
}

.home-registration__title::before {
    content: '🎉';
    display: block;
    font-size: 56px;
    margin-bottom: 16px;
}

.home-registration__desc {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.home-registration__desc p {
    margin-bottom: 12px;
}

.home-registration__features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.home-registration__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    margin-bottom: 14px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.home-registration__feature-icon {
    font-size: 24px;
}

.home-registration__contact h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.home-registration__contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-registration__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.home-registration__contact-item:hover {
    transform: translateX(8px);
}

.home-registration__contact-icon {
    font-size: 24px;
}

/* Form Card */
.home-registration__form-wrapper {
    display: flex;
    justify-content: center;
}

.home-registration__form-card {
    background: #fff;
    border-radius: var(--mn-radius-lg);
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 480px;
}

.home-registration__form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--mn-text);
    text-align: center;
    margin-bottom: 28px;
}

.home-registration__form-group {
    margin-bottom: 20px;
}

.home-registration__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.home-registration__form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--mn-text);
    margin-bottom: 8px;
}

.home-registration__form-group label span {
    color: var(--mn-primary);
}

.home-registration__form-group input,
.home-registration__form-group select,
.home-registration__form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E2E8F0;
    border-radius: 14px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #F7FAFC;
}

.home-registration__form-group input:focus,
.home-registration__form-group select:focus,
.home-registration__form-group textarea:focus {
    outline: none;
    border-color: var(--mn-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.home-registration__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--mn-text-light);
}

.home-registration__checkbox input {
    width: auto;
    margin-top: 3px;
}

.home-registration__checkbox a {
    color: var(--mn-primary);
    text-decoration: underline;
}

.home-registration__submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--mn-primary), var(--mn-orange));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.home-registration__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

.home-registration__submit span {
    font-size: 24px;
}

/* ========================================
   RESPONSIVE - New Sections
======================================== */
@media (max-width: 1024px) {
    .home-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .home-gallery__item:nth-child(1),
    .home-gallery__item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .home-videos__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .home-registration__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .home-registration__info {
        text-align: center;
    }
    
    .home-registration__features li {
        justify-content: center;
    }
    
    .home-registration__contact-items {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .home-gallery,
    .home-videos,
    .home-registration {
        padding: 60px 16px;
    }
    
    .home-gallery__title,
    .home-videos__title,
    .home-registration__title {
        font-size: 32px;
    }
    
    .home-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .home-videos__grid {
        grid-template-columns: 1fr;
    }
    
    .home-registration__form-card {
        padding: 28px;
    }
    
    .home-registration__form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .home-gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .home-gallery__title,
    .home-videos__title,
    .home-registration__title {
        font-size: 26px;
    }
    
    .home-registration__form-card {
        padding: 20px;
        border-radius: var(--mn-radius);
    }
}

/* ========================================
   SLIDER SECTION
======================================== */
.home-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.home-slider__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.home-slider__slide.active {
    opacity: 1;
    visibility: visible;
}

.home-slider__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.home-slider__slide.active .home-slider__bg {
    transform: scale(1.05);
}

.home-slider__overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(255, 107, 107, 0.6), rgba(167, 139, 250, 0.6)); */
}

.home-slider__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
    z-index: 2;
}

.home-slider__content--left {
    align-items: flex-start;
    text-align: left;
}

.home-slider__content--center {
    align-items: center;
    text-align: center;
}

.home-slider__content--right {
    align-items: flex-end;
    text-align: right;
}

.home-slider__subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.home-slider__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

.home-slider__desc {
    font-size: 20px;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 32px;
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.home-slider__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #fff;
    color: var(--mn-primary);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.home-slider__btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

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

/* Arrows */
.home-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-slider__arrow--prev {
    left: 30px;
}

.home-slider__arrow--next {
    right: 30px;
}

.home-slider__arrow:hover {
    background: var(--mn-primary);
    transform: translateY(-50%) scale(1.1);
}

/* Dots */
.home-slider__dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.home-slider__dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-slider__dot.active {
    background: #fff;
    transform: scale(1.3);
}

.home-slider__dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.7);
}

/* ========================================
   FAQ SECTION
======================================== */
.home-faq {
    background: var(--mn-bg-cream);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.home-faq::before {
    content: '❓💬🤔';
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 40px;
    letter-spacing: 15px;
    opacity: 0.15;
}

.home-faq__container {
    max-width: 900px;
    margin: 0 auto;
}

.home-faq__title {
    font-size: 42px;
    font-weight: 800;
    color: var(--mn-text);
    text-align: center;
    margin-bottom: 12px;
}

.home-faq__title::before {
    content: '❓';
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
}

.home-faq__desc {
    font-size: 18px;
    color: var(--mn-text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.home-faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-faq__list--col-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.home-faq__item {
    background: #fff;
    border-radius: var(--mn-radius);
    box-shadow: var(--mn-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.home-faq__item:hover {
    box-shadow: var(--mn-shadow-hover);
}

.home-faq__item.active {
    border: 2px solid var(--mn-primary);
}

.home-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.home-faq__question:hover {
    background: rgba(255, 107, 107, 0.05);
}

.home-faq__icon-custom {
    font-size: 28px;
    flex-shrink: 0;
}

.home-faq__question-text {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    color: var(--mn-text);
}

.home-faq__toggle {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--mn-primary), var(--mn-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.home-faq__item.active .home-faq__toggle {
    transform: rotate(180deg);
}

.home-faq__toggle-icon {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.home-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.home-faq__answer-content {
    padding: 0 24px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--mn-text-light);
    border-top: 1px dashed #E2E8F0;
    padding-top: 20px;
    margin-top: 0;
}

.home-faq__answer-content p {
    margin-bottom: 12px;
}

.home-faq__answer-content p:last-child {
    margin-bottom: 0;
}

.home-faq__answer-content ul,
.home-faq__answer-content ol {
    margin: 12px 0;
    padding-left: 24px;
}

.home-faq__answer-content li {
    margin-bottom: 8px;
}

/* Contact box */
.home-faq__contact {
    margin-top: 48px;
    background: linear-gradient(135deg, #FFA500 0%, #ecc782 100%);
    border-radius: var(--mn-radius);
    padding: 40px;
    text-align: center;
    color: #fff;
}

.home-faq__contact-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.home-faq__contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #fff;
    color: var(--mn-primary);
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.home-faq__contact-btn::before {
    content: '📞';
    font-size: 20px;
}

.home-faq__contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* ========================================
   RESPONSIVE - Slider & FAQ
======================================== */
@media (max-width: 1024px) {
    .home-slider {
        height: 500px;
    }
    
    .home-slider__title {
        font-size: 42px;
    }
    
    .home-faq__list--col-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-slider {
        height: 450px;
    }
    
    .home-slider__content {
        padding: 40px 20px;
    }
    
    .home-slider__title {
        font-size: 32px;
    }
    
    .home-slider__desc {
        font-size: 16px;
    }
    
    .home-slider__btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .home-slider__arrow {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .home-slider__arrow--prev {
        left: 15px;
    }
    
    .home-slider__arrow--next {
        right: 15px;
    }
    
    .home-faq {
        padding: 60px 16px;
    }
    
    .home-faq__title {
        font-size: 32px;
    }
    
    .home-faq__question {
        padding: 16px 20px;
    }
    
    .home-faq__question-text {
        font-size: 15px;
    }
    
    .home-faq__answer-content {
        padding: 0 20px 20px;
    }
    
    .home-faq__contact {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .home-slider {
        height: 400px;
    }
    
    .home-slider__subtitle {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .home-slider__title {
        font-size: 26px;
    }
    
    .home-slider__desc {
        font-size: 14px;
        margin-bottom: 24px;
    }
     
    .home-faq__title {
        font-size: 26px;
    }
    
    .home-faq__toggle {
        width: 30px;
        height: 30px;
    }
    
    .home-faq__toggle-icon {
        font-size: 16px;
    }
}
