:root {
    --primary: #1F91C7; /* Logo Blue */
    --primary-dark: #155E82;
    --secondary: #FEED01; /* Logo Yellow */
    --accent: #5B2026; /* Logo Maroon */
    --accent-light: #7A2E36;
    --mint: #4DB6AC;
    --text: #4a4a4a;
    --text-light: #777;
    --bg-light: #F7FAFC;
    --white: #ffffff;
    --maroon-gradient: linear-gradient(135deg, #5B2026 0%, #7A2E36 100%);
    --blue-gradient: linear-gradient(135deg, #1F91C7 0%, #155E82 100%);
    --yellow-gradient: linear-gradient(135deg, #FEED01 0%, #F9D423 100%);
    --mint-gradient: linear-gradient(135deg, #4DB6AC 0%, #26A69A 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

::selection { background: var(--secondary); color: var(--accent); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--primary), var(--accent)); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    background: var(--bg-light);
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 5% 10%, rgba(31, 145, 199, 0.07) 0%, transparent 25%),
        radial-gradient(circle at 95% 30%, rgba(254, 237, 1, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 15% 70%, rgba(91, 32, 38, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 85% 90%, rgba(31, 145, 199, 0.06) 0%, transparent 30%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5 { font-family: 'Fredoka', sans-serif; color: var(--text); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn-primary, .btn-secondary, .btn-enroll, .btn-text {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
}

.btn-primary { background: var(--maroon-gradient); color: var(--white); box-shadow: 0 4px 15px rgba(91, 32, 38, 0.3); position: relative; overflow: hidden; }
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(91, 32, 38, 0.4); }

.btn-secondary { background: var(--white); color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(31, 145, 199, 0.3); }

.btn-text { color: var(--primary); padding: 0; font-weight: 700; }
.btn-text:hover { color: var(--accent); transform: translateX(5px); }
.btn-text i { transition: transform 0.3s; }
.btn-text:hover i { transform: translateX(5px); }

.full-width { width: 100%; }

/* Section Tags & Headers */
.section-tag {
    display: inline-block;
    background: rgba(31, 145, 199, 0.1);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 12px;
    border: 1px solid rgba(31, 145, 199, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.section-header h3 { font-size: 2.2rem; margin-bottom: 10px; position: relative; display: inline-block; }
.section-header.center h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
    margin: 10px auto 0;
    box-shadow: 0 2px 5px rgba(254, 237, 1, 0.4);
}
.section-header p.subtitle { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

/* Header */
.top-bar { background: var(--white); padding: 15px 0; border-bottom: 3px solid var(--secondary); background: linear-gradient(180deg, var(--white) 0%, #fefef8 100%); }
.top-bar-flex { display: flex; justify-content: space-between; align-items: center; }
.school-identity { display: flex; align-items: center; gap: 15px; }
.logo { font-size: 40px; }
.logo-img { width: 60px; height: 60px; border-radius: 12px; object-fit: cover; box-shadow: 0 4px 12px rgba(91, 32, 38, 0.2); border: 2px solid var(--secondary); transition: transform 0.3s; animation: logoPulse 3s ease-in-out infinite; }
@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.school-name h1 { font-size: 1.5rem; color: var(--accent); margin: 0; }
.school-name span { font-size: 0.85rem; color: var(--primary); font-weight: 700; letter-spacing: 1px; }
.top-contact { display: flex; gap: 20px; }
.top-contact a, .top-contact span { color: var(--text); text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: color 0.3s; }
.top-contact a:hover { color: var(--primary); }
.top-contact i { color: var(--primary); margin-right: 5px; transition: transform 0.3s; }
.top-contact a:hover i { transform: scale(1.2); }

.main-nav { background: var(--white); box-shadow: 0 4px 15px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100; border-bottom: 3px solid var(--primary); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.nav-menu { list-style: none; display: flex; gap: 25px; }
.nav-menu a { text-decoration: none; color: var(--text); font-weight: 700; font-size: 1rem; transition: color 0.3s; position: relative; padding: 5px 0; }
.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: width 0.3s;
}
.nav-menu a:hover::before, .nav-menu a.active::before { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-menu a.active::after { display: none; }

.btn-enroll { background: var(--maroon-gradient); color: var(--white); padding: 10px 25px; animation: pulse 2s infinite; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(91, 32, 38, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(91, 32, 38, 0); }
}
.btn-enroll:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(91, 32, 38, 0.3); animation: none; }

.hamburger { display: none; background: none; border: none; font-size: 24px; color: var(--primary); cursor: pointer; }

/* Hero - Building Slideshow Design */
.hero { position: relative; height: 650px; overflow: hidden; background-color: #eef2f6; }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; }
.slide.active { opacity: 1; }

/* Subtle gradient overlay to make text pop over the real building photo */
.hero-overlay { 
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(90deg, rgba(31, 145, 199, 0.95) 0%, rgba(31, 145, 199, 0.75) 40%, rgba(31, 145, 199, 0.1) 100%); 
    display: flex; 
    align-items: center; 
    z-index: 2;
}
.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--secondary), var(--primary), var(--secondary));
}
.hero-content { color: var(--white); max-width: 650px; }
.hero-badge { background: var(--secondary); color: var(--accent); padding: 8px 20px; border-radius: 20px; font-weight: 700; display: inline-block; margin-bottom: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); animation: bounce 2s infinite; }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hero-content h2 { font-size: 3.5rem; color: var(--white); line-height: 1.1; margin-bottom: 15px; text-shadow: 2px 2px 8px rgba(0,0,0,0.15); }
.hero-content p { font-size: 1.4rem; margin-bottom: 30px; font-weight: 600; opacity: 0.95; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-buttons .btn-secondary { background: rgba(255,255,255,0.2); border-color: var(--white); color: var(--white); backdrop-filter: blur(5px); }
.hero-buttons .btn-secondary:hover { background: var(--white); color: var(--primary); }

/* Floating decorative shapes */
.deco-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; overflow: hidden; z-index: 1; }
.deco-shapes span {
    position: absolute;
    display: block;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatShape 6s ease-in-out infinite;
}
.deco-shapes span:nth-child(1) { width: 80px; height: 80px; background: var(--secondary); top: 15%; left: 70%; animation-delay: 0s; }
.deco-shapes span:nth-child(2) { width: 50px; height: 50px; background: var(--white); top: 70%; left: 65%; animation-delay: 1.5s; }
.deco-shapes span:nth-child(3) { width: 40px; height: 40px; background: var(--secondary); top: 30%; left: 85%; animation-delay: 3s; }
@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Welcome Section */
.welcome-section { padding: 90px 0; background: var(--white); position: relative; overflow: hidden; }
.welcome-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(254, 237, 1, 0.18) 0%, transparent 70%);
    border-radius: 50%;
}
.welcome-section::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(31, 145, 199, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.welcome-image { position: relative; }
.welcome-image img { width: 100%; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.12); border: 4px solid var(--secondary); transition: transform 0.5s; }
.welcome-image:hover img { transform: scale(1.02); }
.floating-card { position: absolute; bottom: -20px; right: -20px; background: var(--white); padding: 15px 25px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--accent); border: 2px solid var(--primary); animation: floatCard 3s ease-in-out infinite; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.welcome-text h3 { font-size: 2.5rem; margin: 10px 0 20px; color: var(--accent); }
.welcome-text p { margin-bottom: 15px; font-size: 1.1rem; color: var(--text-light); }

/* Why Us */
.why-section { padding: 90px 0; position: relative; }
.why-card { background: var(--white); padding: 30px; border-radius: 20px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: all 0.4s; border-top: 5px solid transparent; }
.why-card:hover { transform: translateY(-12px) scale(1.02); border-top-color: var(--secondary); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }
.icon-box { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--white); transition: transform 0.4s; }
.why-card:hover .icon-box { transform: rotate(360deg) scale(1.1); }
.bg-blue { background: var(--blue-gradient); }
.bg-coral { background: var(--maroon-gradient); }
.bg-yellow { background: var(--yellow-gradient); color: var(--accent) !important; }
.bg-mint { background: var(--mint-gradient); }
.why-card h4 { font-size: 1.3rem; margin-bottom: 10px; }
.why-card p { color: var(--text-light); font-size: 0.95rem; }

/* Programs */
.programs-section { padding: 90px 0; background: var(--white); position: relative; }
.program-card { background: #fff; border: 2px solid transparent; border-radius: 20px; padding: 30px; text-align: center; transition: all 0.4s; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; overflow: hidden; }
.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(254, 237, 1, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}
.program-card:hover::before { opacity: 1; }
.program-card:hover { transform: scale(1.03) translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.12); }
.border-blue { border-color: var(--primary); }
.border-coral { border-color: var(--accent); }
.border-yellow { border-color: var(--secondary); }
.border-mint { border-color: var(--mint); }
.program-icon { width: 80px; height: 80px; border-radius: 20px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--white); transform: rotate(-5deg); transition: transform 0.4s; }
.program-card:hover .program-icon { transform: rotate(0deg) scale(1.1); }
.program-card h4 { font-size: 1.5rem; margin-bottom: 5px; }
.program-card .age { display: block; color: var(--accent); font-weight: 700; margin-bottom: 15px; font-size: 0.9rem; background: rgba(91, 32, 38, 0.08); display: inline-block; padding: 3px 12px; border-radius: 12px; }
.program-card p { color: var(--text-light); font-size: 0.95rem; }

/* Activities */
.activities-section { padding: 90px 0; }
.activity-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.06); transition: all 0.4s; border-bottom: 5px solid var(--secondary); }
.activity-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.12); }
.activity-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s; }
.activity-card:hover img { transform: scale(1.1); }
.activity-info { padding: 20px; display: flex; align-items: center; gap: 15px; }
.activity-info i { font-size: 24px; color: var(--primary); }
.activity-info h4 { font-size: 1.2rem; }

/* Facilities */
.facilities-section { padding: 90px 0; background: var(--white); position: relative; overflow: hidden; }
.facilities-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(254, 237, 1, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.facility-item { background: var(--bg-light); padding: 30px; border-radius: 20px; transition: all 0.4s; border-left: 5px solid transparent; }
.facility-item:hover { background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-left-color: var(--primary); transform: translateX(5px); }
.facility-item i { font-size: 32px; color: var(--accent); margin-bottom: 15px; transition: transform 0.4s; }
.facility-item:hover i { transform: scale(1.2) rotate(-10deg); }
.facility-item h4 { font-size: 1.3rem; margin-bottom: 10px; }
.facility-item p { color: var(--text-light); }

/* Approach */
.approach-section { padding: 90px 0; position: relative; }
.approach-list { list-style: none; margin-top: 20px; }
.approach-list li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 15px; font-size: 1.05rem; padding: 12px 15px; background: var(--white); border-radius: 12px; box-shadow: 0 3px 10px rgba(0,0,0,0.04); transition: all 0.3s; }
.approach-list li:hover { transform: translateX(8px); box-shadow: 0 6px 15px rgba(0,0,0,0.08); border-left: 4px solid var(--primary); }
.approach-list i { color: var(--primary); font-size: 20px; margin-top: 5px; }
.approach-image img { width: 100%; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.12); border: 4px solid var(--primary); transition: transform 0.5s; }
.approach-image:hover img { transform: scale(1.02); }

/* Staff Section */
.staff-section { padding: 90px 0; background: var(--bg-light); }
.staff-card { background: var(--white); border-radius: 20px; padding: 30px 20px; text-align: center; transition: all 0.4s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.06); position: relative; }
.staff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--maroon-gradient);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.4s;
}
.staff-card:hover::before { opacity: 1; }
.staff-card:hover { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.staff-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; border: 4px solid var(--secondary); transition: transform 0.4s, border-color 0.4s; }
.staff-card:hover img { transform: scale(1.08); border-color: var(--primary); }
.staff-card h4 { font-size: 1.3rem; margin-bottom: 5px; }
.staff-card span { display: block; color: var(--accent); font-weight: 700; margin-bottom: 15px; font-size: 0.9rem; }
.staff-card p { color: var(--text-light); font-size: 0.9rem; }

/* Gallery */
.gallery-section { padding: 90px 0; background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-card { height: 250px; background-size: cover; background-position: center; border-radius: 20px; transition: all 0.4s; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border: 3px solid var(--secondary); position: relative; overflow: hidden; }
.gallery-card::before {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 40px;
    color: var(--white);
    background: rgba(91, 32, 38, 0.7);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s;
}
.gallery-card:hover::before { transform: translate(-50%, -50%) scale(1); }
.gallery-card:hover { transform: scale(1.03); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }

/* Testimonials */
.testimonials-section { padding: 90px 0; background: var(--bg-light); }
.testimonial-card { background: var(--white); padding: 30px; border-radius: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.06); border-top: 5px solid var(--primary); position: relative; transition: all 0.4s; }
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(31, 145, 199, 0.15);
    line-height: 1;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }
.stars { color: var(--secondary); font-size: 20px; margin-bottom: 15px; text-shadow: 0 1px 3px rgba(0,0,0,0.1); letter-spacing: 2px; }
.testimonial-card p { font-style: italic; margin-bottom: 20px; font-size: 1.05rem; }
.author { display: flex; align-items: center; gap: 15px; }
.author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 3px solid var(--secondary); }
.author h5 { font-size: 1.1rem; }
.author span { font-size: 0.85rem; color: var(--text-light); }

/* Admissions */
.admission-section { padding: 90px 0; background: var(--white); }
.admission-steps { position: relative; counter-reset: step; }
.step { text-align: center; position: relative; padding: 20px; border-radius: 20px; transition: all 0.4s; }
.step:hover { background: rgba(31, 145, 199, 0.04); transform: translateY(-5px); }
.step-num { width: 60px; height: 60px; background: var(--blue-gradient); color: var(--white); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; font-family: 'Fredoka', sans-serif; box-shadow: 0 4px 10px rgba(31, 145, 199, 0.3); transition: transform 0.4s; }
.step:hover .step-num { transform: scale(1.1) rotate(10deg); }
.step:nth-child(2) .step-num { background: var(--maroon-gradient); box-shadow: 0 4px 10px rgba(91, 32, 38, 0.3); }
.step:nth-child(3) .step-num { background: var(--yellow-gradient); color: var(--accent); box-shadow: 0 4px 10px rgba(254, 237, 1, 0.3); }
.step:nth-child(4) .step-num { background: var(--mint-gradient); box-shadow: 0 4px 10px rgba(77, 182, 172, 0.3); }
.step h4 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--text-light); font-size: 0.95rem; }

/* FAQ */
.faq-section { padding: 90px 0; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 15px; margin-bottom: 15px; overflow: hidden; box-shadow: 0 3px 12px rgba(0,0,0,0.06); border-left: 5px solid var(--primary); transition: all 0.3s; }
.faq-item:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.faq-item.active { border-left-color: var(--accent); }
.faq-question { width: 100%; padding: 20px; background: none; border: none; text-align: left; font-family: 'Fredoka', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
.faq-question:hover { color: var(--primary); }
.faq-question i { transition: transform 0.3s; color: var(--primary); background: rgba(31, 145, 199, 0.1); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.faq-item.active .faq-question i { transform: rotate(45deg); color: var(--white); background: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 20px; }
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 20px; }
.faq-answer p { color: var(--text-light); }

/* Contact */
.contact-section { padding: 90px 0; background: var(--blue-gradient); color: var(--white); position: relative; overflow: hidden; }
.contact-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(254, 237, 1, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.contact-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(254, 237, 1, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.contact-section .section-tag { background: rgba(255,255,255,0.2); color: var(--white); border-color: rgba(255,255,255,0.3); }
.contact-section h3 { color: var(--white); font-size: 2.5rem; margin-bottom: 20px; text-shadow: 2px 2px 8px rgba(0,0,0,0.15); }
.contact-list { list-style: none; margin: 20px 0; }
.contact-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; font-size: 1.1rem; }
.contact-list i { font-size: 20px; width: 40px; height: 40px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.contact-list li:hover i { background: var(--accent); transform: scale(1.1); }
.contact-socials { display: flex; gap: 15px; }
.contact-socials a { width: 45px; height: 45px; background: rgba(255,255,255,0.2); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.4s; }
.contact-socials a:hover { background: var(--accent); transform: translateY(-5px) rotate(360deg); }

.contact-form-box { background: var(--white); padding: 30px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.2); border-top: 5px solid var(--secondary); }
.contact-form-box h4 { font-size: 1.5rem; margin-bottom: 20px; color: var(--text); }
.contact-form-box input, .contact-form-box select { width: 100%; padding: 12px 15px; margin-bottom: 15px; border: 2px solid #eee; border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: 1rem; transition: border-color 0.3s, box-shadow 0.3s; }
.contact-form-box input:focus, .contact-form-box select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(31, 145, 199, 0.15); }

/* Footer */
.footer { background: var(--accent); color: #ecf0f1; padding: 60px 0 20px; position: relative; }
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 50%, var(--secondary) 100%);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: 'Fredoka', sans-serif; font-size: 1.5rem; margin-bottom: 15px; color: var(--white); display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; border: 2px solid var(--secondary); }
.footer p { color: #bdc3c7; line-height: 1.8; }
.footer h5 { color: var(--white); margin-bottom: 20px; font-size: 1.2rem; position: relative; padding-bottom: 10px; }
.footer h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: var(--secondary); border-radius: 2px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: #bdc3c7; text-decoration: none; transition: all 0.3s; position: relative; padding-left: 0; }
.footer ul a::before { content: '›'; margin-right: 8px; color: var(--secondary); font-weight: 700; }
.footer ul a:hover { color: var(--secondary); padding-left: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; color: #95a5a6; font-size: 0.9rem; }

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-inner { text-align: center; }
.preloader-logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid var(--secondary);
    box-shadow: 0 8px 25px rgba(91, 32, 38, 0.2);
    animation: logoPulse 1.5s ease-in-out infinite;
    margin-bottom: 20px;
}
.preloader-bar {
    width: 200px;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 15px;
}
.preloader-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: var(--maroon-gradient);
    border-radius: 3px;
    animation: loadingBar 1.2s ease-in-out infinite;
}
@keyframes loadingBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}
.preloader-inner p { color: var(--text-light); font-weight: 600; letter-spacing: 2px; }

/* Announcements Ticker */
.ticker-bar {
    background: var(--maroon-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 50;
}
.ticker-label {
    background: var(--secondary);
    color: var(--accent);
    padding: 10px 20px;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.9rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    z-index: 2;
}
.ticker-track { flex: 1; overflow: hidden; }
.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
    padding: 10px 0;
}
.ticker-content span {
    margin-right: 50px;
    font-size: 0.95rem;
    font-weight: 600;
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Stats Counter */
.stats-section {
    padding: 60px 0;
    background: var(--blue-gradient);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(254, 237, 1, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.stats-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}
.stat-item {
    text-align: center;
    color: var(--white);
    padding: 20px;
}
.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.4s;
}
.stat-item:hover .stat-icon { transform: scale(1.1) rotate(10deg); }
.stat-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    display: inline-block;
    line-height: 1;
}
.stat-plus {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-left: 2px;
}
.stat-item p {
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Floating Buttons */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: whatsappPulse 2s infinite;
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}
.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-3px);
    background: #1ebe5b;
    animation: none;
}
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 50px;
    height: 50px;
    background: var(--maroon-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(91, 32, 38, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Responsive */
@media (max-width: 992px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .nav-menu { display: none; position: absolute; top: 70px; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    .nav-menu.active { display: flex; }
    .hamburger { display: block; }
    .btn-enroll { display: none; }
    .hero { height: 500px; }
    .hero-content h2 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .top-contact { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .ticker-label { padding: 8px 12px; font-size: 0.8rem; }
    .ticker-content span { font-size: 0.85rem; }
    .whatsapp-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 25px; }
    .back-to-top { bottom: 80px; right: 25px; width: 40px; height: 40px; font-size: 16px; }
}

@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 2.5rem; }
    .hero { height: 400px; }
    .hero-content h2 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .ticker-label { padding: 8px 10px; font-size: 0.7rem; }
    .ticker-label i { font-size: 0.7rem; }
    .ticker-content span { font-size: 0.75rem; margin-right: 30px; }
}
