/* ===== CSS Custom Properties ===== */
        :root {
            --primary: #4AB5D9;
            --primary-dark: #3A9BC0;
            --primary-light: #E8F6FB;
            --secondary: #FFD166;
            --secondary-dark: #F0B830;
            --accent: #EF476F;
            --green: #06D6A0;
            --purple: #845EC2;
            --orange: #FF9671;
            --text-dark: #2D3436;
            --text-medium: #555555;
            --text-light: #888888;
            --bg-white: #FFFFFF;
            --bg-light: #F8FBFF;
            --bg-section: #F0F7FA;
            --border-color: #E8EDF0;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --font-heading: 'Nunito', sans-serif;
            --font-body: 'Quicksand', sans-serif;
            --transition: all 0.3s ease;
        }

        /* ===== Reset & Base ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--bg-white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 800;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-label {
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 36px;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-medium);
            max-width: 600px;
            line-height: 1.7;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 50px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(74, 181, 217, 0.4);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .btn-accent {
            background: var(--accent);
            color: white;
        }

        .btn-accent:hover {
            background: #d63060;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(239, 71, 111, 0.4);
        }

        .btn-yellow {
            background: var(--secondary);
            color: var(--text-dark);
        }

        .btn-yellow:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
        }

        /* ===== Scroll Animations ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* ===== Navigation ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: white;
            box-shadow: var(--shadow-sm);
            padding: 12px 0;
            transition: var(--transition);
        }

        .navbar.scrolled {
            padding: 8px 0;
            box-shadow: var(--shadow-md);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 22px;
            color: var(--text-dark);
        }

        .nav-logo-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links a {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 15px;
            color: var(--text-dark);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--primary);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav-lang {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-medium);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-enroll {
            padding: 10px 24px;
            font-size: 13px;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            border-radius: 3px;
            transition: var(--transition);
        }

        /* ===== Hero Section ===== */
        .hero {
            padding: 120px 0 60px;
            background: linear-gradient(135deg, var(--primary-light) 0%, #FFF9E6 50%, #FFE8F0 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(74,181,217,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: white;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-medium);
            margin-bottom: 20px;
            box-shadow: var(--shadow-sm);
        }

        .hero-badge span {
            color: var(--secondary-dark);
        }

        .hero-title {
            font-size: 52px;
            line-height: 1.15;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .hero-title .highlight {
            color: var(--primary);
            position: relative;
        }

        .hero-desc {
            font-size: 17px;
            color: var(--text-medium);
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 480px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            width: 100%;
            height: 450px;
            object-fit: cover;
        }

        .hero-float-card {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: white;
            padding: 16px 20px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-float-card .icon {
            width: 44px;
            height: 44px;
            background: var(--primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .hero-float-card .text {
            font-size: 13px;
        }

        .hero-float-card .text strong {
            display: block;
            font-size: 18px;
            font-family: var(--font-heading);
        }

        .hero-wave {
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
        }

        .hero-wave svg {
            width: 100%;
            display: block;
        }

        /* ===== About Section ===== */
        .about {
            padding: 80px 0;
            background: var(--bg-white);
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            border-radius: var(--radius-lg);
            width: 100%;
            height: 400px;
            object-fit: cover;
            box-shadow: var(--shadow-md);
        }

        .about-image .experience-badge {
            position: absolute;
            top: 20px;
            right: -20px;
            background: var(--secondary);
            color: var(--text-dark);
            padding: 16px 20px;
            border-radius: var(--radius-md);
            text-align: center;
            box-shadow: var(--shadow-md);
        }

        .about-image .experience-badge .number {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 900;
            display: block;
        }

        .about-image .experience-badge .label {
            font-size: 12px;
            font-weight: 600;
        }

        .about-content .section-title {
            font-size: 32px;
        }

        .about-text {
            font-size: 15px;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 28px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 600;
        }

        .about-feature .check {
            width: 24px;
            height: 24px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 12px;
            flex-shrink: 0;
        }

        .about-author {
            display: flex;
            align-items: center;
            gap: 16px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }

        .about-author img {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
        }

        .about-author .info strong {
            display: block;
            font-family: var(--font-heading);
            font-size: 16px;
        }

        .about-author .info span {
            font-size: 13px;
            color: var(--text-light);
        }

        /* ===== Programs Section ===== */
        .programs {
            padding: 80px 0;
            background: var(--bg-section);
        }

        .programs-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .programs-header .section-subtitle {
            margin: 0 auto;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .program-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 36px 28px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            border-radius: 4px 4px 0 0;
        }

        .program-card:nth-child(1)::before { background: var(--primary); }
        .program-card:nth-child(2)::before { background: var(--secondary); }
        .program-card:nth-child(3)::before { background: var(--accent); }

        .program-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .program-icon {
            width: 72px;
            height: 72px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
        }

        .program-card:nth-child(1) .program-icon { background: var(--primary-light); }
        .program-card:nth-child(2) .program-icon { background: #FFF3D6; }
        .program-card:nth-child(3) .program-icon { background: #FFE8EE; }

        .program-card h3 {
            font-size: 22px;
            margin-bottom: 4px;
        }

        .program-card .age {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 16px;
        }

        .program-card p {
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .program-card .learn-more {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 14px;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .program-card .learn-more:hover {
            gap: 10px;
        }

        /* ===== CTA Section ===== */
        .cta {
            padding: 80px 0;
            background: var(--bg-white);
        }

        .cta-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .cta-image {
            height: 400px;
        }

        .cta-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cta-content {
            background: var(--primary-light);
            padding: 60px 48px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cta-content .section-label {
            color: var(--primary-dark);
        }

        .cta-content .section-title {
            font-size: 32px;
            margin-bottom: 16px;
        }

        .cta-content p {
            font-size: 15px;
            color: var(--text-medium);
            line-height: 1.7;
            margin-bottom: 28px;
        }

        /* ===== Age Groups Section ===== */
        .age-groups {
            padding: 80px 0;
            background: var(--bg-section);
        }

        .age-groups-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .age-groups-header .section-subtitle {
            margin: 0 auto;
        }

        .age-groups-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .age-group-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
        }

        .age-group-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .age-group-card .image-wrapper {
            height: 220px;
            overflow: hidden;
        }

        .age-group-card .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .age-group-card:hover .image-wrapper img {
            transform: scale(1.05);
        }

        .age-group-card .card-body {
            padding: 24px;
        }

        .age-group-card .card-body h3 {
            font-size: 20px;
            margin-bottom: 4px;
        }

        .age-group-card .card-body .age-range {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 12px;
        }

        .age-group-card .card-body p {
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .age-group-card .stars {
            display: flex;
            gap: 4px;
            color: var(--secondary);
            font-size: 16px;
        }

        /* ===== Enrollment Form Section ===== */
        .enrollment {
            padding: 80px 0;
            background: var(--bg-white);
        }

        .enrollment-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .enrollment-form-wrapper {
            background: white;
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
        }

        .enrollment-form-wrapper h2 {
            font-size: 28px;
            margin-bottom: 8px;
        }

        .enrollment-form-wrapper > p {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 28px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 13px;
            margin-bottom: 6px;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 16px;
            border: 1.5px solid var(--border-color);
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-size: 14px;
            transition: var(--transition);
            outline: none;
            background: var(--bg-light);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(74, 181, 217, 0.15);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-submit {
            margin-top: 20px;
        }

        .form-submit .btn {
            width: 100%;
            justify-content: center;
            padding: 16px;
            font-size: 16px;
        }

        .enrollment-image {
            position: relative;
        }

        .enrollment-image img {
            border-radius: var(--radius-lg);
            width: 100%;
            height: 500px;
            object-fit: cover;
            box-shadow: var(--shadow-md);
        }

        .enrollment-image .info-card {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
        }

        .enrollment-image .info-card p {
            font-size: 13px;
            color: var(--text-medium);
            line-height: 1.6;
        }

        /* ===== Team Section ===== */
        .team {
            padding: 80px 0;
            background: var(--bg-section);
        }

        .team-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .team-header .section-subtitle {
            margin: 0 auto;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .team-card {
            text-align: center;
        }

        .team-card .photo-wrapper {
            width: 200px;
            height: 200px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid white;
            box-shadow: var(--shadow-md);
            position: relative;
        }

        .team-card .photo-wrapper::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 3px solid var(--primary);
            opacity: 0;
            transition: var(--transition);
        }

        .team-card:hover .photo-wrapper::after {
            opacity: 1;
        }

        .team-card .photo-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-card h3 {
            font-size: 20px;
            margin-bottom: 4px;
        }

        .team-card .role {
            font-size: 14px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 12px;
        }

        .team-card .social {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .team-card .social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-light);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .team-card .social a:hover {
            background: var(--primary);
            color: white;
        }

        /* ===== Testimonials Section ===== */
        .testimonials {
            padding: 80px 0;
            background: var(--bg-white);
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .testimonials-header .section-subtitle {
            margin: 0 auto;
        }

        .testimonials-slider {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .testimonial-card {
            background: var(--bg-light);
            border-radius: var(--radius-lg);
            padding: 36px;
            position: relative;
        }

        .testimonial-card .quote-icon {
            font-size: 48px;
            color: var(--primary);
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;
            margin-bottom: 12px;
        }

        .testimonial-card p {
            font-size: 15px;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-card .author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .testimonial-card .author img {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-card .author .info strong {
            display: block;
            font-family: var(--font-heading);
            font-size: 16px;
        }

        .testimonial-card .author .info span {
            font-size: 13px;
            color: var(--text-light);
        }

        .testimonial-card .stars {
            position: absolute;
            top: 36px;
            right: 36px;
            color: var(--secondary);
            font-size: 14px;
        }

        /* ===== Safety Section ===== */
        .safety {
            padding: 80px 0;
            background: var(--bg-section);
        }

        .safety-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .safety-header .section-subtitle {
            margin: 0 auto;
        }

        .safety-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .safety-card {
            background: white;
            border-radius: var(--radius-md);
            padding: 32px 24px;
            text-align: center;
            transition: var(--transition);
        }

        .safety-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
        }

        .safety-card .icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 28px;
        }

        .safety-card:nth-child(1) .icon { background: var(--primary-light); }
        .safety-card:nth-child(2) .icon { background: #FFF3D6; }
        .safety-card:nth-child(3) .icon { background: #E8F8F0; }
        .safety-card:nth-child(4) .icon { background: #F3E8FF; }

        .safety-card h4 {
            font-size: 16px;
            margin-bottom: 8px;
        }

        .safety-card p {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ===== Schedule Section ===== */
        .schedule {
            padding: 80px 0;
            background: var(--bg-white);
        }

        .schedule-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .schedule-header .section-subtitle {
            margin: 0 auto;
        }

        .schedule-table {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .schedule-row {
            display: grid;
            grid-template-columns: 140px 1fr 1fr;
            border-bottom: 1px solid var(--border-color);
        }

        .schedule-row:last-child {
            border-bottom: none;
        }

        .schedule-row.header {
            background: var(--primary);
            color: white;
        }

        .schedule-row.header .time,
        .schedule-row.header .activity,
        .schedule-row.header .description {
            font-weight: 700;
            font-family: var(--font-heading);
        }

        .schedule-row .time {
            padding: 16px 20px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 14px;
            color: var(--primary);
            background: var(--primary-light);
            display: flex;
            align-items: center;
        }

        .schedule-row .activity {
            padding: 16px 20px;
            font-weight: 700;
            font-size: 14px;
            display: flex;
            align-items: center;
        }

        .schedule-row .description {
            padding: 16px 20px;
            font-size: 13px;
            color: var(--text-light);
            display: flex;
            align-items: center;
        }

        /* ===== Curriculum Section ===== */
        .curriculum {
            padding: 80px 0;
            background: var(--bg-section);
        }

        .curriculum-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .curriculum-header .section-subtitle {
            margin: 0 auto;
        }

        .curriculum-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .curriculum-card {
            background: white;
            border-radius: var(--radius-md);
            padding: 32px 24px;
            text-align: center;
            transition: var(--transition);
        }

        .curriculum-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
        }

        .curriculum-card .icon {
            font-size: 36px;
            margin-bottom: 16px;
        }

        .curriculum-card h4 {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .curriculum-card p {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ===== Gallery Section ===== */
        .gallery {
            padding: 80px 0;
            background: var(--bg-white);
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .gallery-header .section-subtitle {
            margin: 0 auto;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .gallery-item {
            border-radius: var(--radius-md);
            overflow: hidden;
            height: 250px;
            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::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        /* ===== FAQ Section ===== */
        .faq {
            padding: 80px 0;
            background: var(--bg-section);
        }

        .faq-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .faq-header .section-subtitle {
            margin: 0 auto;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 15px;
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question .toggle {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--primary);
            transition: var(--transition);
            flex-shrink: 0;
        }

        .faq-item.active .faq-question .toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        .faq-answer p {
            padding: 0 24px 20px;
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.7;
        }

        /* ===== Enrollment Steps Section ===== */
        .enrollment-steps {
            padding: 80px 0;
            background: var(--bg-white);
        }

        .enrollment-steps-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .enrollment-steps-header .section-subtitle {
            margin: 0 auto;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 15%;
            right: 15%;
            height: 3px;
            background: var(--primary-light);
            z-index: 0;
        }

        .step-card {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-card .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            transition: var(--transition);
        }

        .step-card:hover .step-number {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        .step-card h4 {
            font-size: 16px;
            margin-bottom: 8px;
        }

        .step-card p {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.6;
        }

        .steps-cta {
            text-align: center;
            margin-top: 40px;
        }

        /* ===== Footer ===== */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 60px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-col h4 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .footer-col p {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .footer-col .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 12px;
        }

        .footer-col .contact-item .icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--primary);
            padding-left: 4px;
        }

        .footer-newsletter p {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 16px;
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 16px;
            border: none;
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-size: 14px;
            background: rgba(255,255,255,0.1);
            color: white;
            outline: none;
        }

        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .newsletter-form button {
            padding: 12px 20px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius-sm);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background: var(--primary-dark);
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: white;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--primary);
        }

        .footer-bottom {
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: rgba(255,255,255,0.5);
        }

        .footer-bottom a {
            color: rgba(255,255,255,0.5);
        }

        .footer-bottom a:hover {
            color: var(--primary);
        }

        /* ===== Responsive: 1024px ===== */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 42px;
            }

            .section-title {
                font-size: 30px;
            }

            .programs-grid,
            .age-groups-grid,
            .team-grid,
            .curriculum-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .safety-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-grid::before {
                display: none;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ===== Responsive: 768px ===== */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                gap: 16px;
                box-shadow: var(--shadow-md);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-toggle {
                display: flex;
            }

            .nav-right .nav-lang {
                display: none;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-image img {
                height: 300px;
            }

            .about-container,
            .enrollment-container,
            .cta-container {
                grid-template-columns: 1fr;
            }

            .cta-image {
                height: 250px;
            }

            .programs-grid,
            .age-groups-grid,
            .team-grid,
            .testimonials-slider,
            .curriculum-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .safety-grid {
                grid-template-columns: 1fr 1fr;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .schedule-row {
                grid-template-columns: 100px 1fr;
            }

            .schedule-row .description {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }

            .hero-float-card {
                display: none;
            }

            .about-image .experience-badge {
                right: 10px;
            }
        }