/* ===== RESET & BASE ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Nunito', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            background: #fff;
        }
        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* ===== CSS VARIABLES ===== */
        :root {
            --red: #E74C3C;
            --yellow: #F1C40F;
            --green: #2ECC71;
            --blue: #3498DB;
            --dark-blue: #2C3E50;
            --light-bg: #FFF9E6;
            --orange: #E67E22;
            --purple: #9B59B6;
            --pink: #E91E63;
            --shadow: 0 8px 30px rgba(0,0,0,0.1);
            --shadow-hover: 0 12px 40px rgba(0,0,0,0.18);
            --radius: 16px;
            --transition: all 0.3s ease;
        }

        /* ===== UTILITY ===== */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section-title {
            font-family: 'Fredoka One', cursive;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 15px;
            position: relative;
        }
        .section-subtitle {
            text-align: center;
            color: #777;
            font-size: 1.1rem;
            max-width: 650px;
            margin: 0 auto 50px;
        }
        .btn {
            display: inline-block;
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-primary { background: var(--red); color: #fff; }
        .btn-primary:hover { background: #c0392b; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
        .btn-blue { background: var(--blue); color: #fff; }
        .btn-blue:hover { background: #2980b9; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
        .btn-green { background: var(--green); color: #fff; }
        .btn-green:hover { background: #27ae60; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
        .btn-yellow { background: var(--yellow); color: var(--dark-blue); }
        .btn-yellow:hover { background: #d4ac0d; transform: translateY(-2px); }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            background: #fff;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            padding: 0 20px;
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 75px;
        }
        .navbar-logo {
            font-family: 'Fredoka One', cursive;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .navbar-logo span:nth-child(1) { color: var(--red); }
        .navbar-logo span:nth-child(2) { color: var(--yellow); }
        .navbar-logo span:nth-child(3) { color: var(--green); }
        .navbar-logo span:nth-child(4) { color: var(--blue); }
        .nav-links { display: flex; align-items: center; gap: 30px; }
        .nav-links a {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--dark-blue);
            transition: var(--transition);
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px; left: 0;
            width: 0; height: 3px;
            border-radius: 2px;
            background: var(--yellow);
            transition: var(--transition);
        }
        .nav-links a:hover::after { width: 100%; }
        .nav-links a:hover { color: var(--blue); }
        .nav-admission {
            background: var(--red);
            color: #fff !important;
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 800;
            transition: var(--transition);
        }
        .nav-admission:hover { background: #c0392b; transform: scale(1.05); }
        .nav-admission::after { display: none !important; }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 28px; height: 3px;
            background: var(--dark-blue);
            border-radius: 3px;
            transition: var(--transition);
        }

        /* ===== HERO ===== */
        .hero {
            margin-top: 75px;
            background: linear-gradient(135deg, #FFF9E6 0%, #E8F8F5 50%, #EBF5FB 100%);
            padding: 60px 0;
            min-height: 85vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50px; right: -50px;
            width: 200px; height: 200px;
            background: var(--yellow);
            border-radius: 50%;
            opacity: 0.15;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -80px; left: -80px;
            width: 300px; height: 300px;
            background: var(--green);
            border-radius: 50%;
            opacity: 0.1;
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-content h1 {
            font-family: 'Fredoka One', cursive;
            font-size: 3.2rem;
            line-height: 1.2;
            color: var(--dark-blue);
            margin-bottom: 20px;
        }
        .hero-content h1 .highlight-red { color: var(--red); }
        .hero-content h1 .highlight-blue { color: var(--blue); }
        .hero-content h1 .highlight-green { color: var(--green); }
        .hero-content p {
            font-size: 1.15rem;
            color: #666;
            margin-bottom: 35px;
            max-width: 480px;
        }
        .hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
        .hero-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        .hero-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
        }
        .hero-badge {
            position: absolute;
            bottom: 20px; left: 20px;
            background: var(--yellow);
            color: var(--dark-blue);
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.95rem;
            box-shadow: var(--shadow);
        }
        .hero-shapes .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.6;
            animation: float 6s ease-in-out infinite;
        }
        .hero-shapes .shape-1 { width: 60px; height: 60px; background: var(--red); top: 10%; right: 5%; animation-delay: 0s; }
        .hero-shapes .shape-2 { width: 40px; height: 40px; background: var(--blue); top: 60%; right: 2%; animation-delay: 2s; }
        .hero-shapes .shape-3 { width: 50px; height: 50px; background: var(--green); top: 30%; left: 52%; animation-delay: 4s; }
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        /* ===== WELCOME / FEATURES ===== */
        .welcome {
            padding: 100px 0;
            background: #fff;
        }
        .welcome-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .feature-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 5px;
        }
        .feature-card:nth-child(1)::before { background: var(--red); }
        .feature-card:nth-child(2)::before { background: var(--yellow); }
        .feature-card:nth-child(3)::before { background: var(--green); }
        .feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
        .feature-icon {
            width: 80px; height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
        }
        .feature-card:nth-child(1) .feature-icon { background: #FDEDEC; color: var(--red); }
        .feature-card:nth-child(2) .feature-icon { background: #FEF9E7; color: var(--orange); }
        .feature-card:nth-child(3) .feature-icon { background: #E8F8F5; color: var(--green); }
        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: var(--dark-blue);
        }
        .feature-card p { color: #777; font-size: 0.95rem; }

        /* ===== BEST SCHOOL / TIMELINE ===== */
        .best-school {
            padding: 100px 0;
            background: var(--light-bg);
        }
        .best-school-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .best-school-image {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        .best-school-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }
        .best-school-image .overlay-badge {
            position: absolute;
            top: 20px; right: 20px;
            background: var(--red);
            color: #fff;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.85rem;
        }
        .timeline { position: relative; padding-left: 40px; }
        .timeline::before {
            content: '';
            position: absolute;
            left: 15px; top: 0; bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--red), var(--yellow), var(--green), var(--blue));
            border-radius: 3px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 35px;
            padding: 20px 25px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            transition: var(--transition);
        }
        .timeline-item:hover { transform: translateX(5px); box-shadow: var(--shadow); }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -33px; top: 25px;
            width: 16px; height: 16px;
            border-radius: 50%;
            border: 3px solid #fff;
            box-shadow: 0 0 0 3px var(--blue);
        }
        .timeline-item:nth-child(1)::before { background: var(--red); box-shadow: 0 0 0 3px var(--red); }
        .timeline-item:nth-child(2)::before { background: var(--yellow); box-shadow: 0 0 0 3px var(--yellow); }
        .timeline-item:nth-child(3)::before { background: var(--green); box-shadow: 0 0 0 3px var(--green); }
        .timeline-item:nth-child(4)::before { background: var(--blue); box-shadow: 0 0 0 3px var(--blue); }
        .timeline-item h4 { color: var(--dark-blue); margin-bottom: 5px; font-size: 1.1rem; }
        .timeline-item p { color: #777; font-size: 0.9rem; }
        .timeline-year {
            display: inline-block;
            padding: 3px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .timeline-item:nth-child(1) .timeline-year { background: #FDEDEC; color: var(--red); }
        .timeline-item:nth-child(2) .timeline-year { background: #FEF9E7; color: var(--orange); }
        .timeline-item:nth-child(3) .timeline-year { background: #E8F8F5; color: var(--green); }
        .timeline-item:nth-child(4) .timeline-year { background: #EBF5FB; color: var(--blue); }

        /* ===== ACADEMIC CLASSES ===== */
        .academic-classes {
            padding: 100px 0;
            background: #fff;
        }
        .classes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .class-card {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            background: #fff;
        }
        .class-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
        .class-card-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .class-card-image img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .class-card:hover .class-card-image img { transform: scale(1.05); }
        .class-card-image .grade-badge {
            position: absolute;
            top: 15px; left: 15px;
            padding: 6px 18px;
            border-radius: 50px;
            color: #fff;
            font-weight: 800;
            font-size: 0.85rem;
        }
        .class-card:nth-child(1) .grade-badge { background: var(--red); }
        .class-card:nth-child(2) .grade-badge { background: var(--blue); }
        .class-card:nth-child(3) .grade-badge { background: var(--green); }
        .class-card:nth-child(4) .grade-badge { background: var(--orange); }
        .class-card:nth-child(5) .grade-badge { background: var(--purple); }
        .class-card:nth-child(6) .grade-badge { background: var(--pink); }
        .class-card-body { padding: 25px; }
        .class-card-body h3 { font-size: 1.2rem; color: var(--dark-blue); margin-bottom: 8px; }
        .class-card-body .age-range {
            display: inline-block;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .class-card:nth-child(1) .age-range { background: #FDEDEC; color: var(--red); }
        .class-card:nth-child(2) .age-range { background: #EBF5FB; color: var(--blue); }
        .class-card:nth-child(3) .age-range { background: #E8F8F5; color: var(--green); }
        .class-card:nth-child(4) .age-range { background: #FDF2E9; color: var(--orange); }
        .class-card:nth-child(5) .age-range { background: #F4ECF7; color: var(--purple); }
        .class-card:nth-child(6) .age-range { background: #FDEDEE; color: var(--pink); }
        .class-card-body p { color: #777; font-size: 0.9rem; margin-bottom: 15px; }
        .class-card-body .class-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
            font-size: 0.85rem;
            color: #999;
        }

        /* ===== EXTRA CLASSES ===== */
        .extra-classes {
            padding: 100px 0;
            background: linear-gradient(135deg, #EBF5FB 0%, #E8F8F5 50%, #FEF9E7 100%);
        }
        .extra-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        .extra-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 30px 25px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .extra-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
        .extra-card-icon {
            width: 70px; height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
        }
        .extra-card:nth-child(1) .extra-card-icon { background: #FDEDEC; color: var(--red); }
        .extra-card:nth-child(2) .extra-card-icon { background: #EBF5FB; color: var(--blue); }
        .extra-card:nth-child(3) .extra-card-icon { background: #E8F8F5; color: var(--green); }
        .extra-card:nth-child(4) .extra-card-icon { background: #FEF9E7; color: var(--orange); }
        .extra-card:nth-child(5) .extra-card-icon { background: #F4ECF7; color: var(--purple); }
        .extra-card:nth-child(6) .extra-card-icon { background: #FDEDEE; color: var(--pink); }
        .extra-card:nth-child(7) .extra-card-icon { background: #E8F8F5; color: #1ABC9C; }
        .extra-card:nth-child(8) .extra-card-icon { background: #FDF2E9; color: #E67E22; }
        .extra-card:nth-child(9) .extra-card-icon { background: #EBF5FB; color: #2980B9; }
        .extra-card h3 { font-size: 1.1rem; color: var(--dark-blue); margin-bottom: 8px; }
        .extra-card p { color: #777; font-size: 0.88rem; margin-bottom: 15px; }
        .extra-card .price {
            font-family: 'Fredoka One', cursive;
            font-size: 1.5rem;
            color: var(--blue);
        }
        .extra-card .price span { font-size: 0.85rem; color: #999; font-family: 'Nunito', sans-serif; }

        /* ===== GALLERY ===== */
        .gallery {
            padding: 100px 0;
            background: #fff;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: auto;
            gap: 15px;
        }
        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        .gallery-item img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .gallery-item:hover img { transform: scale(1.08); }
        .gallery-item .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: var(--transition);
        }
        .gallery-item:hover .gallery-overlay { opacity: 1; }
        .gallery-overlay p { color: #fff; font-weight: 700; font-size: 0.95rem; }
        .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
        .gallery-item:nth-child(1) img { height: 100%; min-height: 400px; }
        .gallery-item:not(:nth-child(1)) img { height: 190px; }

        /* ===== CONTACT ===== */
        .contact {
            padding: 100px 0;
            background: var(--light-bg);
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .contact-image {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        .contact-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }
        .contact-form {
            background: #fff;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .contact-form h3 {
            font-family: 'Fredoka One', cursive;
            font-size: 1.8rem;
            color: var(--dark-blue);
            margin-bottom: 25px;
        }
        .form-group { margin-bottom: 20px; }
        .form-group label {
            display: block;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--dark-blue);
            font-size: 0.9rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 18px;
            border: 2px solid #eee;
            border-radius: 10px;
            font-family: 'Nunito', sans-serif;
            font-size: 0.95rem;
            transition: var(--transition);
            background: #FAFAFA;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--blue);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(52,152,219,0.1);
        }
        .form-group textarea { resize: vertical; min-height: 120px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

        /* ===== NEWS ===== */
        .news {
            padding: 100px 0;
            background: #fff;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .news-card {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            background: #fff;
        }
        .news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
        .news-card-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .news-card-image img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .news-card:hover .news-card-image img { transform: scale(1.05); }
        .news-card-image .category-badge {
            position: absolute;
            top: 15px; left: 15px;
            padding: 5px 15px;
            border-radius: 50px;
            color: #fff;
            font-weight: 700;
            font-size: 0.78rem;
            text-transform: uppercase;
        }
        .news-card:nth-child(1) .category-badge,
        .news-card:nth-child(4) .category-badge { background: var(--red); }
        .news-card:nth-child(2) .category-badge,
        .news-card:nth-child(5) .category-badge { background: var(--blue); }
        .news-card:nth-child(3) .category-badge,
        .news-card:nth-child(6) .category-badge { background: var(--green); }
        .news-card-body { padding: 25px; }
        .news-card-body .date {
            font-size: 0.82rem;
            color: #999;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .news-card-body h3 {
            font-size: 1.1rem;
            color: var(--dark-blue);
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .news-card-body p { color: #777; font-size: 0.88rem; margin-bottom: 15px; }
        .news-card-body .read-more {
            color: var(--blue);
            font-weight: 700;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }
        .news-card-body .read-more:hover { gap: 10px; color: var(--red); }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark-blue);
            color: #ccc;
            padding: 80px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            padding-bottom: 50px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer-col h3 {
            font-family: 'Fredoka One', cursive;
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 20px;
        }
        .footer-col p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 15px; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a {
            color: #aaa;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .footer-col ul li a:hover { color: var(--yellow); padding-left: 5px; }
        .footer-hours li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            font-size: 0.88rem;
        }
        .footer-hours li span:first-child { color: #fff; font-weight: 600; }
        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
        }
        .footer-contact-item .icon-circle {
            width: 40px; height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.9rem;
        }
        .footer-contact-item:nth-child(1) .icon-circle { background: rgba(231,76,60,0.2); color: var(--red); }
        .footer-contact-item:nth-child(2) .icon-circle { background: rgba(52,152,219,0.2); color: var(--blue); }
        .footer-contact-item:nth-child(3) .icon-circle { background: rgba(46,204,113,0.2); color: var(--green); }
        .footer-bottom {
            padding: 25px 0;
            text-align: center;
            font-size: 0.85rem;
            color: #888;
        }
        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 15px;
        }
        .footer-social a {
            width: 40px; height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.08);
            color: #aaa;
            transition: var(--transition);
            font-size: 0.9rem;
        }
        .footer-social a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 30px; right: 30px;
            width: 50px; height: 50px;
            border-radius: 50%;
            background: var(--blue);
            color: #fff;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }
        .scroll-top.visible { opacity: 1; visibility: visible; }
        .scroll-top:hover { background: var(--red); transform: translateY(-3px); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero .container { grid-template-columns: 1fr; text-align: center; }
            .hero-content p { margin: 0 auto 35px; }
            .hero-buttons { justify-content: center; }
            .hero-image { max-width: 500px; margin: 0 auto; }
            .best-school-grid { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .nav-links { 
                display: none;
                position: absolute;
                top: 75px; left: 0; right: 0;
                background: #fff;
                flex-direction: column;
                padding: 30px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                gap: 20px;
            }
            .nav-links.active { display: flex; }
            .hamburger { display: flex; }
            .hero-content h1 { font-size: 2.2rem; }
            .section-title { font-size: 2rem; }
            .welcome-grid,
            .classes-grid,
            .extra-grid,
            .news-grid { grid-template-columns: 1fr 1fr; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
            .gallery-item:nth-child(1) img { min-height: 250px; }
            .form-row { grid-template-columns: 1fr; }
        }
        @media (max-width: 576px) {
            .hero-content h1 { font-size: 1.8rem; }
            .section-title { font-size: 1.6rem; }
            .welcome-grid,
            .classes-grid,
            .extra-grid,
            .news-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: 1fr; }
            .gallery-item:nth-child(1) { grid-column: span 1; }
            .footer-grid { grid-template-columns: 1fr; }
            .hero-buttons { flex-direction: column; align-items: center; }
            .contact-form { padding: 25px; }
        }