/**
 * Enrollment Landing Page Styles V2
 * Modern, Clean & Child-Friendly Design
 * 
 * @package Flatsome Child
 * @since 2.0.0
 */

/* ==========================================================================
   CSS Variables - Color Palette (Consistent with Homepage & Program)
========================================================================== */
:root {
    /* Primary Colors */
    --enr-primary: #FF6B9D;
    --enr-primary-light: #FFE4EC;
    --enr-primary-dark: #E5547F;
    
    /* Secondary Colors */
    --enr-secondary: #6C63FF;
    --enr-secondary-light: #E8E7FF;
    
    /* Accent Colors */
    --enr-accent-yellow: #FFD93D;
    --enr-accent-green: #6BCB77;
    --enr-accent-blue: #4D96FF;
    --enr-accent-orange: #FF9F45;
    --enr-accent-purple: #C77DFF;
    --enr-accent-teal: #38D9A9;
    
    /* Neutral Colors */
    --enr-text-dark: #2D3436;
    --enr-text-medium: #636E72;
    --enr-text-light: #B2BEC3;
    --enr-white: #FFFFFF;
    --enr-off-white: #FAFBFC;
    --enr-light-gray: #F1F3F4;
    
    /* Background Gradients */
    --enr-bg-warm: linear-gradient(135deg, #FFF5F7 0%, #FFF9E6 100%);
    --enr-bg-cool: linear-gradient(135deg, #F0F4FF 0%, #E8FFF1 100%);
    --enr-bg-sunset: linear-gradient(135deg, #FFE4EC 0%, #FFE8D6 100%);
    --enr-bg-sky: linear-gradient(180deg, #E3F2FD 0%, #FFFFFF 100%);
    
    /* Shadows */
    --enr-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --enr-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --enr-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --enr-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --enr-shadow-color: 0 10px 40px rgba(255, 107, 157, 0.25);
    
    /* Border Radius */
    --enr-radius-sm: 12px;
    --enr-radius-md: 20px;
    --enr-radius-lg: 32px;
    --enr-radius-xl: 48px;
    --enr-radius-full: 9999px;
    
    /* Transitions */
    --enr-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --enr-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base Styles
========================================================================== */
.enrollment-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    color: var(--enr-text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.enrollment-section {
    position: relative;
    overflow: hidden;
}

.enrollment-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header Styles */
.enrollment-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.enrollment-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--enr-primary-light);
    color: #00adef;
    border-radius: var(--enr-radius-full);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.enrollment-section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--enr-text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.enrollment-section-title span {
    background: linear-gradient(135deg, #00adef 0%, var(--enr-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enrollment-section-subtitle {
    font-size: 18px;
    color: #000000;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================================================
   HERO SECTION
========================================================================== */
.enrollment-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--enr-bg-warm);
    padding: 120px 24px 80px;
    position: relative;
}

.enrollment-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.enrollment-hero__content {
    max-width: 580px;
}

.enrollment-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--enr-white);
    border-radius: var(--enr-radius-full);
    box-shadow: var(--enr-shadow-md);
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--enr-text-dark);
}

.enrollment-hero__title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--enr-text-dark);
    margin-bottom: 24px;
}

.enrollment-hero__title span {
    display: block;
    background: linear-gradient(135deg, #00adef 0%, var(--enr-accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enrollment-hero__desc {
    font-size: 20px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 40px;
}

.enrollment-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.enrollment-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: var(--enr-radius-full);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--enr-transition);
}

.enrollment-hero__btn--primary {
    background: linear-gradient(135deg, #00adef 0%, var(--enr-primary-dark) 100%);
    color: var(--enr-white);
    box-shadow: var(--enr-shadow-color);
}

.enrollment-hero__btn--primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.35);
    color: #fff !important;
}

.enrollment-hero__btn--secondary {
    background: var(--enr-white);
    color: var(--enr-text-dark);
    border: 2px solid var(--enr-light-gray);
}

.enrollment-hero__btn--secondary:hover {
    border-color: #00adef;
    background: #fff;
}

.enrollment-hero__media img {
    width: 100%;
    height: auto;
    border-radius: var(--enr-radius-lg);
    box-shadow: var(--enr-shadow-xl);
}

.enrollment-hero__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.enrollment-hero__feature {
    background: var(--enr-white);
    padding: 16px;
    border-radius: var(--enr-radius-md);
    box-shadow: var(--enr-shadow-sm);
    text-align: center;
}

.enrollment-hero__feature-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.enrollment-hero__feature-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--enr-text-dark);
}

/* ==========================================================================
   REASONS SECTION - Why Choose Us
========================================================================== */
.enrollment-reasons {
    padding: 120px 24px;
    background: var(--enr-white);
}

.enrollment-reasons__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.enrollment-reasons__item {
    background: var(--enr-off-white);
    padding: 40px 32px;
    border-radius: var(--enr-radius-md);
    transition: var(--enr-transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.enrollment-reasons__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00adef, var(--enr-accent-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.enrollment-reasons__item:hover::before {
    transform: scaleX(1);
}

.enrollment-reasons__item:hover {
    transform: translateY(-8px);
    background: var(--enr-white);
    box-shadow: var(--enr-shadow-lg);
}

.enrollment-reasons__icon {
    width: 80px;
    height: 80px;
    border-radius: var(--enr-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
    line-height: 1;
}

.enrollment-reasons__item:nth-child(1) .enrollment-reasons__icon { background: rgba(255, 107, 157, 0.15); }
.enrollment-reasons__item:nth-child(2) .enrollment-reasons__icon { background: rgba(108, 99, 255, 0.15); }
.enrollment-reasons__item:nth-child(3) .enrollment-reasons__icon { background: rgba(107, 203, 119, 0.15); }
.enrollment-reasons__item:nth-child(4) .enrollment-reasons__icon { background: rgba(77, 150, 255, 0.15); }
.enrollment-reasons__item:nth-child(5) .enrollment-reasons__icon { background: rgba(255, 159, 69, 0.15); }
.enrollment-reasons__item:nth-child(6) .enrollment-reasons__icon { background: rgba(199, 125, 255, 0.15); }

.enrollment-reasons__item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--enr-text-dark);
    margin-bottom: 12px;
}

.enrollment-reasons__item p {
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
}

/* ==========================================================================
   PROGRAMS SECTION
========================================================================== */
.enrollment-programs {
    padding: 120px 24px;
    background: var(--enr-bg-cool);
}

.enrollment-programs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.enrollment-programs__card {
    background: var(--enr-white);
    border-radius: var(--enr-radius-md);
    overflow: hidden;
    box-shadow: var(--enr-shadow-sm);
    transition: var(--enr-transition);
}

.enrollment-programs__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--enr-shadow-lg);
}

.enrollment-programs__card-header {
    padding: 32px;
    text-align: center;
    background: var(--enr-bg-warm);
}

.enrollment-programs__card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.enrollment-programs__card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--enr-text-dark);
    margin-bottom: 8px;
}

.enrollment-programs__card-age {
    font-size: 16px;
    color: var(--enr-text-medium);
    font-weight: 600;
}

.enrollment-programs__card-body {
    padding: 32px;
}

.enrollment-programs__card-desc {
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 24px;
}

.enrollment-programs__card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.enrollment-programs__card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--enr-text-dark);
}

.enrollment-programs__card-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(107, 203, 119, 0.15);
    color: #ffca02;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 12px;
}

.enrollment-programs__card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffca02;
    font-weight: 600;
    text-decoration: none;
    transition: var(--enr-transition);
}

.enrollment-programs__card-link:hover {
    gap: 12px;
}

/* ==========================================================================
   FACILITIES SECTION
========================================================================== */
.enrollment-facilities {
    padding: 120px 24px;
    background: var(--enr-white);
}

.enrollment-facilities__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
    margin-top: 60px;
}

.enrollment-facilities__item {
    border-radius: var(--enr-radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

.enrollment-facilities__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.enrollment-facilities__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.85), rgba(108, 99, 255, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--enr-transition);
    padding: 24px;
    text-align: center;
}

.enrollment-facilities__item:hover .enrollment-facilities__overlay {
    opacity: 1;
}

.enrollment-facilities__overlay h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--enr-white);
    margin-bottom: 8px;
}

.enrollment-facilities__overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   TIMELINE SECTION - Enrollment Process
========================================================================== */
.enrollment-timeline {
    padding: 120px 24px;
    background: var(--enr-bg-sunset);
}

.enrollment-timeline__list {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.enrollment-timeline__list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #00adef, var(--enr-secondary));
    transform: translateX(-50%);
}

.enrollment-timeline__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
}

.enrollment-timeline__item:nth-child(even) {
    direction: rtl;
}

.enrollment-timeline__item:nth-child(even) > * {
    direction: ltr;
}

.enrollment-timeline__item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 24px;
    width: 24px;
    height: 24px;
    background: var(--enr-white);
    border: 4px solid #00adef;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.enrollment-timeline__content {
    background: var(--enr-white);
    padding: 32px;
    border-radius: var(--enr-radius-md);
    box-shadow: var(--enr-shadow-md);
}

.enrollment-timeline__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #00adef;
    color: var(--enr-white);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.enrollment-timeline__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--enr-text-dark);
    margin-bottom: 12px;
}

.enrollment-timeline__desc {
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
}

/* ==========================================================================
   TUITION SECTION - Pricing
========================================================================== */
.enrollment-tuition {
    padding: 120px 24px;
    background: var(--enr-white);
}

.enrollment-tuition__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.enrollment-tuition__plan {
    background: var(--enr-white);
    border: 2px solid var(--enr-light-gray);
    border-radius: var(--enr-radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--enr-transition);
    position: relative;
}

.enrollment-tuition__plan--featured {
    border-color: var(--enr-primary);
    box-shadow: var(--enr-shadow-lg);
    transform: scale(1.05);
}

.enrollment-tuition__plan--featured::before {
    content: 'Phổ biến';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--enr-primary);
    color: var(--enr-white);
    padding: 6px 20px;
    border-radius: var(--enr-radius-full);
    font-size: 13px;
    font-weight: 700;
}

.enrollment-tuition__plan:not(.enrollment-tuition__plan--featured):hover {
    border-color: var(--enr-primary);
    transform: translateY(-8px);
    box-shadow: var(--enr-shadow-lg);
}

.enrollment-tuition__plan-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--enr-text-dark);
    margin-bottom: 16px;
}

.enrollment-tuition__plan-price {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--enr-primary) 0%, var(--enr-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.enrollment-tuition__plan-period {
    font-size: 14px;
    color: var(--enr-text-medium);
    margin-bottom: 32px;
}

.enrollment-tuition__plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.enrollment-tuition__plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--enr-text-dark);
}

.enrollment-tuition__plan-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(107, 203, 119, 0.15);
    color: var(--enr-accent-green);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 12px;
}

.enrollment-tuition__plan-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--enr-light-gray);
    color: var(--enr-text-dark);
    border: none;
    border-radius: var(--enr-radius-full);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--enr-transition);
}

.enrollment-tuition__plan--featured .enrollment-tuition__plan-btn {
    background: linear-gradient(135deg, var(--enr-primary) 0%, var(--enr-primary-dark) 100%);
    color: var(--enr-white);
    box-shadow: var(--enr-shadow-color);
}

.enrollment-tuition__plan-btn:hover {
    transform: translateY(-2px);
}

/* ==========================================================================
   TESTIMONIALS SECTION
========================================================================== */
.enrollment-testimonials {
    padding: 120px 24px;
    background: var(--enr-bg-cool);
}

.enrollment-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.enrollment-testimonials__item {
    background: var(--enr-white);
    padding: 32px;
    border-radius: var(--enr-radius-md);
    box-shadow: var(--enr-shadow-sm);
    transition: var(--enr-transition);
}

.enrollment-testimonials__item:hover {
    transform: translateY(-6px);
    box-shadow: var(--enr-shadow-lg);
}

.enrollment-testimonials__rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.enrollment-testimonials__star {
    color: var(--enr-accent-yellow);
    font-size: 18px;
}

.enrollment-testimonials__text {
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.enrollment-testimonials__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.enrollment-testimonials__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.enrollment-testimonials__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enrollment-testimonials__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--enr-text-dark);
    margin-bottom: 4px;
}

.enrollment-testimonials__role {
    font-size: 13px;
    color: #000000;
}

/* ==========================================================================
   FAQ SECTION
========================================================================== */
.enrollment-faq {
    padding: 120px 24px;
    background: var(--enr-white);
}

.enrollment-faq__list {
    max-width: 900px;
    margin: 60px auto 0;
}

.enrollment-faq__item {
    background: var(--enr-off-white);
    border-radius: var(--enr-radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--enr-transition);
}

.enrollment-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--enr-text-dark);
    text-align: left;
    cursor: pointer;
    transition: var(--enr-transition);
}

.enrollment-faq__question:hover {
    color: var(--enr-primary);
}

.enrollment-faq__icon {
    width: 32px;
    height: 32px;
    background: var(--enr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00adef;
    font-size: 20px;
    transition: var(--enr-transition);
    flex-shrink: 0;
}

.enrollment-faq__item.active .enrollment-faq__icon {
    transform: rotate(45deg);
}

.enrollment-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.enrollment-faq__item.active .enrollment-faq__answer {
    max-height: 500px;
}

.enrollment-faq__answer-content {
    padding: 0 28px 24px;
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
}

/* ==========================================================================
   FORM SECTION
========================================================================== */
.enrollment-form {
    padding: 120px 24px;
    background: var(--enr-bg-warm);
}

.enrollment-form__container {
    max-width: 800px;
    margin: 0 auto;
}

.enrollment-form__wrapper {
    background: var(--enr-white);
    padding: 48px;
    border-radius: var(--enr-radius-lg);
    box-shadow: var(--enr-shadow-xl);
}

/* ==========================================================================
   CTA SECTION
========================================================================== */
.enrollment-cta {
    padding: 120px 24px;
    background: linear-gradient(135deg, var(--enr-primary) 0%, var(--enr-accent-orange) 50%, #00adef 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.enrollment-cta::before {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
}

.enrollment-cta::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
}

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

.enrollment-cta__icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.enrollment-cta__title {
    font-size: 48px;
    font-weight: 800;
    color: var(--enr-white);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.enrollment-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: var(--enr-white);
    color: var(--enr-primary);
    border-radius: var(--enr-radius-full);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: var(--enr-transition);
}

.enrollment-cta__btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   RESPONSIVE DESIGN
========================================================================== */
@media (max-width: 1200px) {
    .enrollment-hero__title { font-size: 48px; }
    .enrollment-section-title { font-size: 40px; }
}

@media (max-width: 1024px) {
    .enrollment-hero__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .enrollment-hero { padding: 100px 24px 80px; min-height: auto; }
    .enrollment-hero__content { max-width: 100%; text-align: center; }
    .enrollment-hero__actions { justify-content: center; }
    
    .enrollment-reasons__grid,
    .enrollment-programs__grid,
    .enrollment-testimonials__grid,
    .enrollment-tuition__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .enrollment-facilities__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .enrollment-timeline__list::before {
        left: 24px;
    }
    
    .enrollment-timeline__item {
        grid-template-columns: 1fr;
        padding-left: 60px;
    }
    
    .enrollment-timeline__item:nth-child(even) {
        direction: ltr;
    }
    
    .enrollment-timeline__item::before {
        left: 24px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .enrollment-hero,
    .enrollment-reasons,
    .enrollment-programs,
    .enrollment-facilities,
    .enrollment-timeline,
    .enrollment-tuition,
    .enrollment-testimonials,
    .enrollment-faq,
    .enrollment-form,
    .enrollment-cta {
        padding: 80px 20px;
    }
    
    .enrollment-hero__title { font-size: 36px; }
    .enrollment-section-title { font-size: 32px; }
    .enrollment-cta__title { font-size: 32px; }
    
    .enrollment-section-header { margin-bottom: 40px; }
    
    .enrollment-reasons__grid,
    .enrollment-programs__grid,
    .enrollment-testimonials__grid,
    .enrollment-tuition__grid {
        grid-template-columns: 1fr;
    }
    
    .enrollment-tuition__plan--featured {
        transform: scale(1);
    }
    
    .enrollment-facilities__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    
    .enrollment-hero__features {
        grid-template-columns: 1fr;
    }
    
    .enrollment-form__wrapper {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .enrollment-hero__title { font-size: 30px; }
    .enrollment-section-title { font-size: 28px; }
    .enrollment-cta__title { font-size: 28px; }
    
    .enrollment-hero__desc { font-size: 16px; }
    .enrollment-section-subtitle { font-size: 15px; }
    
    .enrollment-hero__actions { flex-direction: column; }
    .enrollment-hero__btn { width: 100%; justify-content: center; }
    
    .enrollment-facilities__grid { grid-template-columns: 1fr; }
    
    .enrollment-cta__btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}
