/* ===================================
   THE CRAYON KINGDOM - PREMIUM BUILD
   =================================== */

:root {
    /* -- PALETTE (Original Pastel) -- */
    --c-pink: #FF6B95;      
    --c-pink-dark: #D6336C;
    --c-blue: #4CC9F0;      
    --c-blue-dark: #0096C7;
    --c-yellow: #FFD93D;    
    --c-green: #6BCB77;     
    --c-purple: #9D4EDD;    
    
    /* -- BACKGROUNDS -- */
    --bg-cream: #FFF9F5;    
    --bg-white: #FFFFFF;
    
    --text-main: #2D3436;
    --text-light: #636E72;
    
    /* -- FONTS (Original) -- */
    --font-head: 'Sniglet', cursive;
    --font-body: 'Quicksand', sans-serif;
    
    /* -- SOFT SHADOWS -- */
    --shadow-pop: 5px 5px 0px rgba(0,0,0,0.1); 
    --shadow-soft: 0 10px 30px rgba(255, 107, 149, 0.15);
    --radius-blob: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
}

h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 800; }
a { text-decoration: none; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- PRELOADER --- */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-cream); z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.5s ease;
}
.spinner {
    width: 50px; height: 50px; 
    border: 5px solid rgba(255, 107, 149, 0.2);
    border-top-color: var(--c-pink); 
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* --- BACKGROUND SHAPES --- */
.background-shapes {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    z-index: -1; overflow: hidden; pointer-events: none;
}
.shape {
    position: absolute; opacity: 0.4; filter: blur(40px);
    animation: floatShape 20s infinite linear;
}
.shape-1 { width: 300px; height: 300px; background: var(--c-pink); border-radius: 50%; top: -50px; left: -50px; }
.shape-2 { width: 400px; height: 400px; background: var(--c-blue); border-radius: 50%; bottom: 10%; right: -100px; animation-delay: -5s; }
.shape-3 { width: 200px; height: 200px; background: var(--c-yellow); border-radius: 50%; top: 40%; left: 20%; animation-delay: -10s; }

@keyframes floatShape {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 50px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* --- NAVIGATION (Compact & Cute) --- */
.navbar {
    position: fixed; 
    top: 20px; 
    left: 50%; 
    transform: translateX(-50%);
    
    /* Initial: Nice and small */
    width: 90%; 
    max-width: 1000px;
    
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    z-index: 1000;
    border: 2px solid rgba(255,255,255,0.8);
    
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Scrolled State: Slight Expansion (Not "Too Big") */
.navbar.scrolled {
    width: 100%; /* Expands a bit, but keeps margins */
    max-width: 1100px;
    padding: 12px 30px; /* Slight padding increase */
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 50px; width: auto; margin-right: 10px; transition: transform 0.3s; }
.nav-logo-img:hover { transform: scale(1.1) rotate(5deg); }

.logo-text span { font-size: 1.5rem; }
#Blossom { color: var(--c-pink-dark); }
#Kids { color: var(--c-blue-dark); }

.hamburger { display: none; cursor: pointer; background: transparent; border: none; padding: 8px; font-size: 1.5rem; color: var(--c-pink); }
.hamburger .bar {
    display: block; width: 25px; height: 3px; margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--c-pink);
    border-radius: 3px;
}

.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; padding: 0; margin: 0; }
.nav-links a { color: var(--text-main); font-weight: 700; font-size: 1.1rem; position: relative; }
.nav-links a:hover, .nav-links a.active-link { color: var(--c-pink); transform: translateY(-2px); }

.btn-nav { background: var(--c-pink); color: white !important; padding: 10px 25px; border-radius: 30px; box-shadow: 0 4px 0 var(--c-pink-dark); }
.btn-nav:hover { transform: translateY(2px) !important; box-shadow: 0 2px 0 var(--c-pink-dark); }

/* --- HERO SECTION --- */
.hero {
    padding-top: 160px; padding-bottom: 100px;
    position: relative;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.badge-pill {
    background: var(--c-yellow); color: #856404;
    padding: 8px 16px; border-radius: 20px; font-weight: 700;
    display: inline-block; margin-bottom: 1rem;
    transform: rotate(-2deg);
    box-shadow: 3px 3px 0 rgba(0,0,0,0.1);
}

.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1.5rem; color: var(--text-main); }
.highlight-text { color: var(--c-blue); position: relative; display: inline-block; }
.highlight-text::after {
    content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 15px;
    background: var(--c-yellow); opacity: 0.4; z-index: -1;
    border-radius: 10px; transform: rotate(-1deg);
}

.hero p { font-size: 1.2rem; color: #666; }

.hero-btns { display: flex; gap: 15px; margin-top: 2rem; }
.btn-primary {
    background: var(--c-pink); color: white;
    padding: 15px 35px; border-radius: 50px; font-size: 1.2rem; font-weight: 700;
    border: none; cursor: pointer;
    box-shadow: 0 6px 0 var(--c-pink-dark); transition: all 0.2s;
}
.btn-primary:active { transform: translateY(6px); box-shadow: 0 0 0 var(--c-pink-dark); }

.btn-secondary {
    background: white; color: var(--c-blue-dark);
    padding: 15px 35px; border-radius: 50px; font-size: 1.2rem; font-weight: 700;
    border: 2px solid var(--c-blue);
    box-shadow: 0 6px 0 var(--c-blue-dark);
}
.btn-secondary:active { transform: translateY(6px); box-shadow: 0 0 0 var(--c-blue-dark); }

/* --- HERO SLIDER --- */
.hero-visual { position: relative; }
.blob-border {
    position: absolute; top: -20px; left: -20px; right: -20px; bottom: -20px;
    background: var(--c-blue); opacity: 0.1;
    border-radius: var(--radius-blob);
    animation: morph 8s ease-in-out infinite; z-index: 0;
}
.slider-container {
    width: 100%; height: 500px;
    border-radius: var(--radius-blob);
    overflow: hidden; position: relative;
    box-shadow: var(--shadow-soft);
    border: 8px solid white; z-index: 1;
    animation: morph 8s ease-in-out infinite;
}
.slider-image img { width: 100%; height: 100%; object-fit: cover; }
.slider-image { display: none; height: 100%; width: 100%; }
.slider-image.active { display: block; animation: fade 1s; }

.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85); 
    border: none; width: 40px; height: 40px;
    border-radius: 50%; color: var(--c-pink); font-size: 1.2rem;
    cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 3; transition: 0.3s;
}
.slider-btn:hover { background: var(--c-pink); color: white; }
.prev { left: 20px; } .next { right: 20px; }

.slider-dots {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 3;
}
.dot {
    width: 12px; height: 12px; background: rgba(255,255,255,0.5);
    border-radius: 50%; cursor: pointer; transition: 0.3s;
    border: 2px solid transparent;
}
.dot.active { background: white; transform: scale(1.2); border-color: var(--c-pink); }

@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}
@keyframes fade { from { opacity: 0.4; } to { opacity: 1; } }

/* --- PROGRAMS --- */
.section-white { background: white; position: relative; padding: 50px 0; }
.section-header h2 { font-size: 3rem; margin-top: 15px; margin-bottom: 50px; }
.highlight-blue { color: var(--c-blue); }
.sub-heading {
    text-transform: uppercase; letter-spacing: 2px;
    font-size: 0.9rem; font-weight: 700; color: var(--c-purple);
    background: #F3E5F5; padding: 5px 15px; border-radius: 20px;
}

.programs-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; 
}
.program-card {
    background: var(--bg-cream); padding: 30px 20px;
    border-radius: 30px; text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s; position: relative; top: 0;
}
.program-card:hover {
    top: -10px; background: white;
    box-shadow: var(--shadow-pop);
    border-color: currentColor;
}
.p-nursery { color: var(--c-pink); border-color: #FFE0E9; }
.p-nursery-2 { color: var(--c-blue); border-color: #D6F3FB; }
.p-lkg { color: var(--c-yellow); border-color: #FFF6CC; }
.p-ukg { color: var(--c-purple); border-color: #EBD4F9; }

.icon-box { font-size: 3rem; margin-bottom: 15px; display: inline-block; transform: rotate(-5deg); }
.age-tag {
    display: inline-block; background: white; border: 2px solid currentColor;
    padding: 4px 12px; border-radius: 15px; font-weight: 700; font-size: 0.9rem; margin: 10px 0;
}
.program-card p { color: var(--text-light); font-size: 1rem; }

/* --- FEATURES --- */
.section-colorful { 
    background: linear-gradient(135deg, var(--c-pink) 0%, var(--c-blue) 100%);
    color: white; padding: 0; position: relative; z-index: 1;
}
.wave-top, .wave-bottom { line-height: 0; width: 100%; overflow: hidden; position: relative; }
.wave-top svg, .wave-bottom svg { display: block; width: 100%; height: auto; }
.wave-bottom { margin-top: -5px; position: relative; z-index: 2; } 
.wave-top { margin-bottom: -5px; position: relative; z-index: 2; }

.features-mosaic {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
    max-width: 900px; margin: 0 auto; padding: 50px 20px;
}
.feature-item {
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
    padding: 30px; border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.2); transition: 0.3s;
}
.feature-item:hover { transform: scale(1.05); background: white; color: var(--text-main); }
.highlight-yellow { color: var(--c-yellow); text-shadow: 2px 2px 0 rgba(0,0,0,0.1); }

/* --- DAILY ROUTINE (Fixed: Stacked No-Overlap, Original Style) --- */
.section-pinkish { background: #FFF5F7; padding: 80px 0; overflow: hidden; }

.routine-path { 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; 
    max-width: 700px; 
    margin: 50px auto;
    position: relative;
}

/* Center Line */
.routine-path::before {
    content: ''; position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 4px; background: repeating-linear-gradient(to bottom, var(--c-pink) 0, var(--c-pink) 10px, transparent 10px, transparent 20px);
    z-index: 0;
}

.routine-step { width: 100%; display: flex; justify-content: center; position: relative; z-index: 1; }

.step-card {
    background: white;
    width: 100%;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.2s;
    border-bottom: 5px solid var(--c-blue);
}

/* Color Coding */
.routine-step:nth-child(1) .step-card { border-bottom-color: var(--c-pink); }
.routine-step:nth-child(2) .step-card { border-bottom-color: var(--c-blue); }
.routine-step:nth-child(3) .step-card { border-bottom-color: var(--c-green); }
.routine-step:nth-child(4) .step-card { border-bottom-color: var(--c-purple); }
.routine-step:nth-child(5) .step-card { border-bottom-color: var(--c-yellow); }

.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-pop); }

/* Time Bubble (Inside Card) */
.time-bubble {
    position: static; transform: none;
    min-width: 70px; height: 70px;
    background: var(--c-yellow); color: #856404;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; border: 4px solid white;
    box-shadow: 0 4px 0 rgba(0,0,0,0.1);
}

.step-content { flex: 1; }
.step-card h4 { margin: 0 0 5px 0; font-size: 1.3rem; color: var(--text-main); }
.step-card p { margin: 0; color: var(--text-light); }

/* --- ADMISSIONS --- */
.section-paper { background: #E3F2FD; background-image: radial-gradient(#4CC9F0 1px, transparent 1px); background-size: 20px 20px; }
.admissions-wrapper { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: center; }
.step-list { margin: 30px 0; }
.step-item { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; background: white; padding: 15px; border-radius: 50px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.step-num { 
    background: var(--c-blue); color: white; width: 40px; height: 40px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    font-weight: bold; font-family: var(--font-head);
}
.cta-card {
    background: var(--c-pink); color: white; padding: 40px;
    border-radius: 40px; text-align: center;
    transform: rotate(2deg); box-shadow: 20px 20px 0 rgba(0,0,0,0.1);
}
.cta-card .btn-primary { background: white; color: var(--c-pink); box-shadow: 0 6px 0 rgba(0,0,0,0.1); display: block; }
.cta-card .btn-primary:active { box-shadow: none; }

/* --- GALLERY --- */
.polaroid-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px; margin-top: 40px;
}
.polaroid {
    background: white; padding: 15px 15px 50px 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.polaroid:hover { transform: scale(1.1) rotate(0deg) !important; z-index: 10; }
.polaroid .frame { width: 100%; height: 200px; overflow: hidden; background: #eee; }
.polaroid img { width: 100%; height: 100%; object-fit: cover; }
.caption {
    font-family: 'Sniglet', cursive; color: #555; font-size: 1.2rem;
    text-align: center; margin-top: 20px; transform: rotate(-1deg);
}

/* --- REVIEWS --- */
.review-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px; margin-top: 30px;
}
.review-card {
    background: white; border-radius: 30px; overflow: hidden;
    box-shadow: 0 15px 35px rgba(214, 51, 108, 0.1); 
    transition: transform 0.3s ease; border: 3px solid white;
}
.review-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(214, 51, 108, 0.2); }
.video-frame { width: 100%; background: #000; position: relative; aspect-ratio: 16/9; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-content { padding: 30px; position: relative; text-align: center; }
.quote-icon {
    font-size: 3rem; color: var(--c-yellow); line-height: 1;
    margin-bottom: 10px; font-family: serif; opacity: 0.5;
}
.review-content p { font-size: 1.1rem; color: #555; font-style: italic; margin-bottom: 15px; }
.review-content h4 { color: var(--c-pink-dark); font-size: 1.1rem; font-weight: 800; }

/* --- CONTACT --- */
.section-blue { background: #E0F7FA; padding-bottom: 0; }
.contact-paper-container {
    background: white; border-radius: 50px 50px 0 0;
    padding: 60px; box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 40px; }
.info-bubble { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 30px; }
.info-bubble i {
    background: #E1F5FE; color: var(--c-blue); width: 50px; height: 50px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}

.bouncy-form input, .bouncy-form textarea {
    width: 100%; padding: 15px; border: 2px solid #eee; border-radius: 15px;
    margin-bottom: 20px; font-family: var(--font-body); font-size: 1rem;
    transition: 0.3s;
}
.bouncy-form input:focus, .bouncy-form textarea:focus { 
    border-color: var(--c-pink); outline: none; transform: scale(1.02); 
}
.hidden { display: none !important; }

/* 3D Submit Button */
#submitBtn {
    width: 100%; border: none;
    background: linear-gradient(135deg, var(--c-pink) 0%, #d63384 100%);
    color: white; font-family: var(--font-head);
    font-size: 1.4rem; font-weight: 800;
    padding: 18px; border-radius: 50px; cursor: pointer;
    box-shadow: 0 8px 0 #9e1b48;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 10px; text-transform: uppercase; letter-spacing: 1px;
    position: relative; overflow: hidden;
}
#submitBtn::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}
#submitBtn:hover { transform: translateY(-3px); box-shadow: 0 12px 0 #9e1b48; }
#submitBtn:hover::after { left: 100%; }
#submitBtn:active { transform: translateY(8px); box-shadow: 0 0 0 #9e1b48; }

#statusMessage { text-align: center; margin-top: 15px; font-weight: bold; padding: 10px; border-radius: 10px; display: none; }
.success { color: #155724; background-color: #d4edda; border: 1px solid #c3e6cb; }
.error { color: #721c24; background-color: #f8d7da; border: 1px solid #f5c6cb; }

/* --- FOOTER --- */
.site-footer { background: var(--text-main); color: white; padding: 60px 0 20px; text-align: center; }
.footer-brand h3 { font-size: 2rem; color: var(--c-yellow); }
.social-links { margin-top: 20px; display: flex; justify-content: center; gap: 20px; }
.social-btn {
    background: rgba(255,255,255,0.1); width: 40px; height: 40px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; transition: 0.3s;
}
.social-btn:hover { background: var(--c-pink); transform: translateY(-5px); }
.footer-bottom { margin-top: 50px; font-size: 0.8rem; color: #888; border-top: 1px solid #444; padding-top: 20px; }
.circle-image {
    width: 200px;        /* 1. Width */
    height: 200px;       /* 2. Height must match Width */
    border-radius: 50%;  /* 3. Makes it round */
    object-fit: cover;   /* 4. KEY STEP: Crops the image so it doesn't stretch */
}
/* --- CHATBOT WIDGET --- */
#sb-chatbot-widget {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: fixed; bottom: 20px; right: 20px; z-index: 99999;
}
#sb-toggle-btn {
    background-color: #47ffb8; color: white; border: none;
    padding: 15px 25px; border-radius: 50px; cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: bold;
    transition: transform 0.2s;
}
#sb-toggle-btn:hover { transform: scale(1.05); }

#sb-chat-window {
    width: 350px; height: 450px; background: white;
    border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex; flex-direction: column; overflow: hidden;
    position: absolute; bottom: 80px; right: 0;
    transition: all 0.3s ease; opacity: 1; transform: translateY(0); pointer-events: all;
}
#sb-chat-window.sb-hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }

.sb-header { background: #47ffb8; padding: 15px; display: flex; align-items: center; color: white; }
.sb-avatar { font-size: 24px; margin-right: 10px; background: white; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.sb-info h3 { margin: 0; font-size: 16px; }
.sb-info .sb-status { font-size: 12px; opacity: 0.9; }
#sb-close-btn { margin-left: auto; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }

#sb-messages { flex: 1; padding: 15px; overflow-y: auto; background: #f9f9f9; display: flex; flex-direction: column; gap: 10px; }
.sb-msg { display: flex; max-width: 80%; }
.sb-bot { align-self: flex-start; }
.sb-user { align-self: flex-end; flex-direction: row-reverse; }

.sb-bubble { padding: 10px 15px; border-radius: 15px; font-size: 14px; line-height: 1.4; }
.sb-bot .sb-bubble { background: white; color: #333; border: 1px solid #eee; border-bottom-left-radius: 2px; }
.sb-user .sb-bubble { background: #47ffb8; color: white; border-bottom-right-radius: 2px; }

.sb-chips { margin-top: 10px; display: flex; gap: 5px; flex-wrap: wrap; }
.sb-chip {
    background: white; border: 1px solid #47ffb8; color: #47ffb8;
    padding: 5px 10px; border-radius: 15px; cursor: pointer; font-size: 12px;
}
.sb-chip:hover { background: #47ffb8; color: white; }

.sb-input-area { padding: 10px; background: white; border-top: 1px solid #eee; display: flex; gap: 10px; }
#sb-input { flex: 1; padding: 10px; border: 1px solid #ddd; border-radius: 20px; outline: none; }
#sb-send-btn { background: #47ffb8; color: white; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; }

/* --- MOBILE RESPONSIVE --- */
@media(max-width: 992px) {
    .navbar { width: 95%; top: 10px; padding: 10px 20px; }
    
    .hamburger { display: block; z-index: 1100; position: relative; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-links { 
        display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(15px);
        flex-direction: column; justify-content: center; padding: 20px; 
        z-index: 1050; transition: opacity 0.3s ease;
    }
    .nav-links.active { display: flex; animation: slideIn 0.3s ease; }
    .nav-links li { margin: 15px 0; opacity: 0; animation: fadeIn 0.5s ease forwards; }
    .nav-links li:nth-child(1) { animation-delay: 0.1s; } 
    .nav-links li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links li:nth-child(3) { animation-delay: 0.3s; }
    .nav-links li:nth-child(4) { animation-delay: 0.4s; }
    .nav-links li:nth-child(5) { animation-delay: 0.5s; }
    .nav-links li:nth-child(6) { animation-delay: 0.6s; }
    .nav-links a { font-size: 1.5rem; }

    .hero-grid, .admissions-wrapper, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero { padding-top: 120px; text-align: center; }
    .hero-btns { justify-content: center; }
    .routine-path::before { left: 20px; }
    .review-grid { grid-template-columns: 1fr; }
    .contact-paper-container { padding: 30px; border-radius: 30px 30px 0 0; }

    /* Fix Day in Life Mobile */
    .step-card {
        flex-direction: column; text-align: center; gap: 15px;
    }
    .time-bubble { width: 100%; height: 40px; font-size: 1rem; border-radius: 10px; }
    .routine-path::before { display: none; }
}

@keyframes slideIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes wobble { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(-10deg); } 75% { transform: rotate(10deg); } }