        :root {
            --red: #d62828;
            --yellow: #f4c430;
            --gold: #c9a227;
            --blue: #1e3a5f;
            --blue-dark: #0d1b2a;
            --blue-light: #2d5a87;
            --cream: #fefcf6;
            --white: #ffffff;
            --gray-100: #f8f9fa;
            --gray-200: #e9ecef;
            --gray-600: #6c757d;
            --gray-800: #343a40;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--gray-800); line-height: 1.7; }
        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
        img { max-width: 100%; height: auto; }
        a { text-decoration: none; transition: all 0.3s; }

        /* Navbar */
        .navbar { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(13, 27, 42, 0.95); backdrop-filter: blur(20px); padding: 0.75rem 2rem; transition: all 0.3s; }
        .navbar.scrolled { padding: 0.5rem 2rem; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
        .nav-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
        .nav-brand { display: flex; align-items: center; gap: 0.75rem; }
        .nav-logo { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--yellow); object-fit: cover; }
        .nav-title { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; }
        .nav-title span { color: var(--yellow); }
        .nav-menu { display: flex; gap: 0.25rem; list-style: none; }
        .nav-link { color: rgba(255,255,255,0.85); padding: 0.6rem 1rem; border-radius: 8px; font-size: 0.9rem; font-weight: 500; }
        .nav-link:hover, .nav-link.active { background: var(--blue); color: var(--white); }
        .nav-actions { display: flex; align-items: center; gap: 1rem; }
        .nav-social { display: flex; gap: 0.5rem; }
        .nav-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.9rem; }
        .nav-social a:hover { background: var(--yellow); color: var(--blue-dark); transform: scale(1.1); }
        .lang-switch { display: flex; gap: 0.25rem; background: rgba(255,255,255,0.1); padding: 0.25rem; border-radius: 8px; }
        .lang-btn { padding: 0.4rem 0.75rem; border-radius: 6px; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); background: transparent; border: none; cursor: pointer; text-decoration: none; }
        .lang-btn.active { background: var(--yellow); color: var(--blue-dark); }
        .lang-btn:hover:not(.active) { background: rgba(255,255,255,0.15); color: var(--white); }
        .nav-cta { padding: 0.5rem 1.25rem; background: var(--yellow); color: var(--blue-dark); border-radius: 8px; font-weight: 600; font-size: 0.85rem; display: flex; align-items: center; gap: 0.4rem; }
        .nav-cta:hover { background: var(--gold); transform: translateY(-2px); }
        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; background: none; border: none; }
        .hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        /* Hero */
        .hero { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, rgba(13,27,42,0.9), rgba(30,58,95,0.85)), url('img/20260104_184728.jpg') center/cover fixed; padding: 8rem 2rem 4rem; position: relative; overflow: hidden; }
        .hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 150%; background: radial-gradient(ellipse, rgba(244,196,48,0.15) 0%, transparent 60%); pointer-events: none; }
        .hero-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .hero-content { position: relative; z-index: 1; }
        .hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(244,196,48,0.2); border: 1px solid var(--yellow); color: var(--yellow); padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; }
        .hero h1 { font-size: 3.5rem; color: var(--white); margin-bottom: 1rem; font-weight: 900; line-height: 1.1; }
        .hero h1 .highlight { background: linear-gradient(135deg, var(--yellow), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hero-location { display: flex; align-items: center; gap: 0.5rem; color: var(--yellow); font-size: 1.1rem; margin-bottom: 1.5rem; font-family: 'Playfair Display', serif; font-style: italic; }
        .hero p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 500px; }
        .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
        .btn { padding: 1rem 2rem; border-radius: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 1rem; border: none; cursor: pointer; transition: all 0.3s; }
        .btn-primary { background: linear-gradient(135deg, var(--yellow), var(--gold)); color: var(--blue-dark); }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(244,196,48,0.4); }
        .btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
        .btn-outline:hover { background: var(--white); color: var(--blue-dark); border-color: var(--white); }
        .btn-red { background: linear-gradient(135deg, var(--red), #b82020); color: var(--white); }
        .btn-red:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(214,40,40,0.4); }
        .hero-visual { position: relative; }
        .hero-image-main { width: 100%; height: 500px; object-fit: cover; border-radius: 30px; box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
        .hero-image-float { position: absolute; width: 200px; height: 200px; object-fit: cover; border-radius: 20px; border: 4px solid var(--white); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
        .hero-image-float.top { top: -30px; right: -30px; }
        .hero-image-float.bottom { bottom: -30px; left: -30px; }
        .hero-stats { position: absolute; bottom: 30px; right: 30px; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); padding: 1.5rem; border-radius: 16px; display: flex; gap: 2rem; }
        .hero-stat { text-align: center; }
        .hero-stat-number { font-size: 2rem; font-weight: 700; color: var(--blue); font-family: 'Playfair Display', serif; }
        .hero-stat-label { font-size: 0.8rem; color: var(--gray-600); }

        /* Sections */
        .section { padding: 6rem 2rem; }
        .section-dark { background: var(--blue-dark); color: var(--white); }
        .section-blue { background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: var(--white); }
        .section-gradient { background: linear-gradient(180deg, var(--cream), var(--gray-100)); }
        .section-gold { background: linear-gradient(135deg, var(--yellow), var(--gold)); }
        .container { max-width: 1200px; margin: 0 auto; }
        .section-header { text-align: center; margin-bottom: 4rem; }
        .section-header h2 { font-size: 2.75rem; margin-bottom: 1rem; position: relative; display: inline-block; }
        .section-header h2::after { content: ''; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, var(--red), var(--yellow)); border-radius: 2px; }
        .section-header p { font-size: 1.1rem; color: var(--gray-600); max-width: 600px; margin: 1.5rem auto 0; }
        .section-dark .section-header p, .section-blue .section-header p { color: rgba(255,255,255,0.7); }

        /* About */
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .about-content h3 { font-size: 2rem; color: var(--blue); margin-bottom: 1.5rem; }
        .about-content p { margin-bottom: 1.25rem; color: var(--gray-600); font-size: 1.05rem; }
        .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
        .about-feature { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; background: var(--white); border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
        .about-feature-icon { width: 45px; height: 45px; background: linear-gradient(135deg, var(--yellow), var(--gold)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--blue-dark); font-size: 1.1rem; }
        .about-feature span { font-weight: 600; color: var(--gray-800); font-size: 0.95rem; }
        .about-images { position: relative; height: 500px; }
        .about-img { position: absolute; border-radius: 20px; box-shadow: 0 25px 60px rgba(0,0,0,0.15); object-fit: cover; }
        .about-img.main { width: 70%; height: 400px; top: 0; right: 0; }
        .about-img.secondary { width: 55%; height: 280px; bottom: 0; left: 0; border: 5px solid var(--white); }

        /* Instruments */
        .instruments-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
        .instrument-card { background: rgba(255,255,255,0.05); border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); transition: all 0.4s; position: relative; }
        .instrument-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(244,196,48,0.1), transparent); opacity: 0; transition: opacity 0.4s; }
        .instrument-card:hover { transform: translateY(-10px); border-color: var(--yellow); }
        .instrument-card:hover::before { opacity: 1; }
        .instrument-img { width: 100%; height: 280px; object-fit: cover; }
        .instrument-content { padding: 2rem; position: relative; }
        .instrument-card h3 { font-size: 1.75rem; margin-bottom: 1rem; color: var(--yellow); }
        .instrument-card p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.7; }

        /* Services */
        .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
        .service-card { background: var(--white); border-radius: 20px; padding: 2rem; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.06); transition: all 0.4s; border: 2px solid transparent; position: relative; overflow: hidden; }
        .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--yellow)); transform: scaleX(0); transition: transform 0.4s; }
        .service-card:hover { transform: translateY(-8px); border-color: var(--blue); }
        .service-card:hover::before { transform: scaleX(1); }
        .service-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.75rem; color: var(--white); transition: all 0.4s; }
        .service-card:hover .service-icon { transform: rotateY(180deg); background: linear-gradient(135deg, var(--yellow), var(--gold)); color: var(--blue-dark); }
        .service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--gray-800); }
        .service-card p { color: var(--gray-600); font-size: 0.9rem; }

        /* Gallery */
        .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
        .gallery-item { aspect-ratio: 1; border-radius: 16px; overflow: hidden; cursor: pointer; position: relative; }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .gallery-item:hover img { transform: scale(1.1); }
        .gallery-item.large { grid-column: span 2; grid-row: span 2; }
        .gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,42,0.8), transparent 60%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 1.5rem; }
        .gallery-item:hover .gallery-overlay { opacity: 1; }
        .gallery-overlay span { color: var(--white); font-weight: 600; font-size: 0.95rem; }
        .gallery-overlay i { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 2rem; color: var(--white); opacity: 0.9; }

        /* Lightbox */
        .lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999; justify-content: center; align-items: center; padding: 2rem; }
        .lightbox.active { display: flex; }
        .lightbox img { max-width: 90%; max-height: 85vh; object-fit: contain; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
        .lightbox-close { position: absolute; top: 20px; right: 30px; font-size: 2.5rem; color: var(--white); cursor: pointer; transition: all 0.3s; z-index: 10000; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: 50%; }
        .lightbox-close:hover { background: var(--red); transform: scale(1.1); }
        .lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2rem; color: var(--white); cursor: pointer; padding: 1rem; transition: all 0.3s; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: 50%; }
        .lightbox-nav:hover { background: var(--yellow); color: var(--blue-dark); }
        .lightbox-prev { left: 30px; }
        .lightbox-next { right: 30px; }
        .lightbox-counter { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: var(--white); font-size: 1rem; background: rgba(0,0,0,0.5); padding: 0.5rem 1.5rem; border-radius: 50px; }

        /* School */
        .school-section { background: linear-gradient(135deg, var(--yellow), var(--gold)); }
        .school-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .school-content h3 { font-size: 2.25rem; color: var(--blue-dark); margin-bottom: 1rem; }
        .school-content p { color: rgba(0,0,0,0.75); font-size: 1.05rem; margin-bottom: 1rem; }
        .school-features { background: rgba(255,255,255,0.4); padding: 2rem; border-radius: 20px; margin-top: 1.5rem; }
        .school-features li { list-style: none; padding: 0.75rem 0; border-bottom: 1px solid rgba(0,0,0,0.1); display: flex; align-items: center; gap: 1rem; color: var(--blue-dark); font-weight: 500; }
        .school-features li:last-child { border-bottom: none; }
        .school-features li i { color: var(--blue); font-size: 1.25rem; width: 30px; }
        .school-card { background: var(--white); padding: 3rem; border-radius: 24px; text-align: center; box-shadow: 0 25px 60px rgba(0,0,0,0.15); }
        .school-card h4 { font-size: 1.75rem; color: var(--blue); margin-bottom: 0.5rem; }
        .school-card .teacher { font-size: 1.5rem; color: var(--gray-800); margin-bottom: 1.5rem; }
        .school-card .phone { font-size: 2rem; color: var(--blue); font-weight: 700; margin-bottom: 1.5rem; display: block; }
        .school-card .phone:hover { color: var(--blue-light); }
        .school-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; color: var(--blue-dark); font-weight: 600; background: rgba(30,58,95,0.1); padding: 0.75rem 1.5rem; border-radius: 10px; }
        .school-link:hover { background: var(--blue); color: var(--white); }

        /* Help */
        .help-section { background: var(--gray-100); }
        .help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
        .help-card { background: var(--white); border-radius: 20px; padding: 2rem; box-shadow: 0 10px 40px rgba(0,0,0,0.05); transition: all 0.3s; }
        .help-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
        .help-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--red), #ff6b6b); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--white); margin-bottom: 1.25rem; }
        .help-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--gray-800); }
        .help-card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 1rem; }
        .help-card ul { list-style: none; }
        .help-card li { padding: 0.4rem 0; color: var(--gray-600); font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
        .help-card li i { color: var(--yellow); font-size: 0.8rem; }
        .help-cta { text-align: center; margin-top: 3rem; }

        /* FAQ */
        .faq-grid { max-width: 800px; margin: 0 auto; }
        .faq-item { background: var(--white); border-radius: 16px; margin-bottom: 1rem; box-shadow: 0 5px 20px rgba(0,0,0,0.05); overflow: hidden; }
        .faq-question { padding: 1.5rem 2rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--gray-800); transition: all 0.3s; }
        .faq-question:hover { background: var(--gray-100); }
        .faq-question i { color: var(--blue); transition: transform 0.3s; }
        .faq-item.active .faq-question i { transform: rotate(180deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
        .faq-answer-inner { padding: 0 2rem 1.5rem; color: var(--gray-600); line-height: 1.7; }
        .faq-item.active .faq-answer { max-height: 300px; }

        /* Testimonials */
        .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
        .testimonial-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border-radius: 20px; padding: 2rem; border: 1px solid rgba(255,255,255,0.15); }
        .testimonial-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 1rem; }
        .testimonial-text { color: rgba(255,255,255,0.9); font-style: italic; margin-bottom: 1.5rem; line-height: 1.7; }
        .testimonial-author { display: flex; align-items: center; gap: 1rem; }
        .testimonial-avatar { width: 50px; height: 50px; background: linear-gradient(135deg, var(--yellow), var(--gold)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--blue-dark); font-weight: 700; }
        .testimonial-info h4 { color: var(--white); font-size: 1rem; font-family: 'Inter', sans-serif; }
        .testimonial-info p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

        /* Contact */
        .contact-wrapper { background: var(--white); border-radius: 30px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.1); display: grid; grid-template-columns: 1fr 1.2fr; }
        .contact-info { background: linear-gradient(135deg, var(--blue), var(--blue-light)); padding: 3.5rem; color: var(--white); }
        .contact-info h3 { font-size: 2rem; margin-bottom: 1rem; }
        .contact-info > p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
        .contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
        .contact-item .icon { width: 45px; height: 45px; background: rgba(255,255,255,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
        .contact-item strong { display: block; margin-bottom: 0.25rem; font-size: 1rem; }
        .contact-item span, .contact-item a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
        .contact-item a:hover { color: var(--yellow); }
        .contact-social { display: flex; gap: 0.75rem; margin-top: 2rem; }
        .contact-social a { width: 45px; height: 45px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; }
        .contact-social a:hover { background: var(--yellow); color: var(--blue-dark); transform: translateY(-3px); }
        .contact-form { padding: 3.5rem; }
        .contact-form h3 { font-size: 1.5rem; color: var(--gray-800); margin-bottom: 1.5rem; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .form-group { margin-bottom: 1.25rem; }
        .form-group.full { grid-column: span 2; }
        .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--gray-800); font-size: 0.9rem; }
        .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.9rem 1.1rem; border: 2px solid var(--gray-200); border-radius: 12px; font-size: 1rem; font-family: inherit; transition: all 0.3s; background: var(--gray-100); }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--blue); background: var(--white); }
        .form-group textarea { resize: vertical; min-height: 120px; }
        .btn-submit { width: 100%; padding: 1rem; font-size: 1rem; background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: var(--white); border: none; border-radius: 12px; cursor: pointer; font-weight: 600; }
        .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(30,58,95,0.3); }
        .btn-submit:disabled { background: var(--gray-600); cursor: not-allowed; transform: none; }
        .hp-field { position: absolute; left: -9999px; opacity: 0; }

        /* Toast Notifications */
        .toast-container { position: fixed; top: 20px; right: 20px; z-index: 9999; }
        .toast { background: white; padding: 1rem 1.5rem; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; min-width: 300px; animation: slideIn 0.3s ease; }
        .toast.success { border-left: 4px solid #10b981; }
        .toast.error { border-left: 4px solid #ef4444; }
        .toast.success i { color: #10b981; font-size: 1.5rem; }
        .toast.error i { color: #ef4444; font-size: 1.5rem; }
        .toast-message { flex: 1; color: var(--gray-800); }
        .toast-close { background: none; border: none; color: var(--gray-600); cursor: pointer; font-size: 1.2rem; padding: 0; }
        @keyframes slideIn { from { transform: translateX(400px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
        @keyframes slideOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(400px); opacity: 0; } }
        .toast.removing { animation: slideOut 0.3s ease; }

        /* Back to Top Button */
        .back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: white; border: none; border-radius: 50%; cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 5px 20px rgba(30,58,95,0.3); transition: all 0.3s; z-index: 1000; }
        .back-to-top:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(30,58,95,0.4); }
        .back-to-top.show { display: flex; animation: fadeIn 0.3s ease; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        /* Footer */
        .footer { background: var(--blue-dark); color: var(--white); padding: 4rem 2rem 2rem; }
        .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .footer-brand h4 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--yellow); }
        .footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
        .footer-section h5 { font-size: 1.05rem; margin-bottom: 1.25rem; }
        .footer-section ul { list-style: none; }
        .footer-section li { margin-bottom: 0.6rem; }
        .footer-section a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
        .footer-section a:hover { color: var(--yellow); }
        .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
        .footer-copy { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
        .footer-social { display: flex; gap: 0.75rem; }
        .footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.9rem; }
        .footer-social a:hover { background: var(--yellow); color: var(--blue-dark); }

        /* WhatsApp */
        .whatsapp-float { position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: var(--white); box-shadow: 0 5px 25px rgba(37,211,102,0.4); z-index: 999; }
        .whatsapp-float:hover { transform: scale(1.1); }
        .whatsapp-float::before { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; background: #25D366; animation: pulse 2s infinite; z-index: -1; }
        @keyframes pulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.5); opacity: 0; } }

        /* Cookie */
        .cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(13,27,42,0.98); color: var(--white); padding: 1.25rem 2rem; z-index: 9998; display: none; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; backdrop-filter: blur(10px); }
        .cookie-banner.show { display: flex; }
        .cookie-banner p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.9); max-width: 500px; }
        .cookie-buttons { display: flex; gap: 0.75rem; }
        .cookie-btn { padding: 0.6rem 1.5rem; border-radius: 8px; font-weight: 600; font-size: 0.85rem; cursor: pointer; border: none; }
        .cookie-accept { background: var(--yellow); color: var(--blue-dark); }
        .cookie-reject { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container { grid-template-columns: 1fr; text-align: center; }
            .hero-visual { display: none; }
            .hero h1 { font-size: 2.75rem; }
            .hero p { margin: 0 auto 2rem; }
            .hero-buttons { justify-content: center; }
            .about-grid, .school-grid { grid-template-columns: 1fr; }
            .about-images { height: 400px; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-grid { grid-template-columns: repeat(3, 1fr); }
            .help-grid { grid-template-columns: repeat(2, 1fr); }
            .testimonials-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .nav-menu { display: none; position: fixed; top: 0; left: 0; width: 280px; height: 100vh; flex-direction: column; background: var(--blue-dark); padding: 80px 1.5rem 2rem; z-index: 999; transform: translateX(-100%); transition: transform 0.3s; }
            .nav-menu.active { display: flex; transform: translateX(0); }
            .nav-menu .nav-link { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
            .hamburger { display: flex; }
            .nav-social { display: none; }
            .hero { padding: 7rem 1.5rem 3rem; min-height: auto; }
            .hero h1 { font-size: 2rem; }
            .section { padding: 4rem 1.5rem; }
            .section-header h2 { font-size: 2rem; }
            .services-grid, .help-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-item.large { grid-column: span 2; grid-row: span 1; }
            .about-features { grid-template-columns: 1fr; }
            .contact-wrapper { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .form-group.full { grid-column: span 1; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .instruments-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 1.75rem; }
            .gallery-grid { grid-template-columns: 1fr; }
            .gallery-item.large { grid-column: span 1; }
            .about-images { height: 300px; }
            .about-img.main { width: 100%; height: 280px; position: relative; }
            .about-img.secondary { display: none; }
        }

/* Pricing Section */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 2rem; }
.pricing-card { background: var(--white); border-radius: 24px; padding: 2.5rem 2rem; text-align: center; box-shadow: 0 15px 50px rgba(0,0,0,0.1); transition: all 0.4s; border: 3px solid transparent; position: relative; overflow: hidden; }
.pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--red), var(--yellow)); transform: scaleX(0); transition: transform 0.4s; }
.pricing-card:hover { transform: translateY(-10px); border-color: var(--blue); box-shadow: 0 25px 60px rgba(0,0,0,0.15); }
.pricing-card:hover::before { transform: scaleX(1); }
.pricing-card.featured { border-color: var(--blue); transform: scale(1.05); }
.pricing-card.featured::before { transform: scaleX(1); }
.pricing-badge { position: absolute; top: 20px; right: 20px; background: var(--blue); color: var(--white); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; }
.pricing-badge.premium { background: linear-gradient(135deg, var(--red), #ff6b6b); }
.pricing-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; color: var(--white); }
.pricing-icon.premium { background: linear-gradient(135deg, var(--yellow), var(--gold)); color: var(--blue-dark); }
.pricing-card h3 { font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--gray-800); }
.pricing-price { margin-bottom: 2rem; }
.price-amount { font-size: 3.5rem; font-weight: 900; color: var(--blue); font-family: 'Playfair Display', serif; line-height: 1; }
.price-currency { font-size: 1.5rem; color: var(--gray-600); margin-left: 0.25rem; }
.price-period { font-size: 1rem; color: var(--gray-600); font-weight: 400; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 2rem; }
.pricing-features li { padding: 0.75rem 0; border-bottom: 1px solid var(--gray-200); display: flex; align-items: flex-start; gap: 0.75rem; color: var(--gray-600); font-size: 0.95rem; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--blue); margin-top: 0.25rem; flex-shrink: 0; }
.btn-pricing { width: 100%; padding: 1rem; background: var(--blue); color: var(--white); border: none; border-radius: 12px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s; }
.btn-pricing:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-pricing.premium { background: linear-gradient(135deg, var(--yellow), var(--gold)); color: var(--blue-dark); }
.btn-pricing.premium:hover { box-shadow: 0 10px 30px rgba(244,196,48,0.4); }
.pricing-note { text-align: center; margin-top: 2rem; padding: 1.5rem; background: rgba(255,255,255,0.6); border-radius: 16px; }
.pricing-note p { color: var(--gray-800); font-size: 0.95rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin: 0; }
.pricing-note i { color: var(--blue); font-size: 1.2rem; }

@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } .pricing-card.featured { transform: scale(1); } }

/* Booking Wizard Modal */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 10000; justify-content: center; align-items: center; padding: 2rem; }
.modal-overlay.active { display: flex; }
.modal-booking { background: var(--white); border-radius: 30px; max-width: 700px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.modal-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; background: var(--gray-200); border: none; border-radius: 50%; font-size: 1.5rem; cursor: pointer; z-index: 10; }
.booking-progress { display: flex; padding: 2.5rem 2.5rem 1.5rem; }
.progress-step { flex: 1; text-align: center; }
.progress-step span { width: 45px; height: 45px; background: var(--gray-200); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.progress-step.active span { background: var(--blue); color: var(--white); }
.progress-step.completed span { background: var(--yellow); color: var(--blue-dark); }
.booking-step { display: none; }
.booking-step.active { display: block; }
.service-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.service-option input { display: none; }
.service-option .option-content { padding: 1.5rem; border: 2px solid var(--gray-200); border-radius: 16px; text-align: center; }
.service-option input:checked + .option-content { background: var(--blue); border-color: var(--blue); }
.budget-preview { background: linear-gradient(135deg, var(--yellow), var(--gold)); padding: 1.5rem; border-radius: 16px; text-align: center; margin-top: 1.5rem; }
.btn-booking { flex: 1; padding: 1rem 2rem; border: none; border-radius: 12px; font-weight: 600; cursor: pointer; }
.btn-next { background: var(--blue); color: var(--white); }
.btn-submit { background: linear-gradient(135deg, var(--yellow), var(--gold)); color: var(--blue-dark); }

/* Logo Animations */
.nav-logo:hover { animation: logoPulse 0.6s ease; }
@keyframes logoPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

/* Parallax Effect */
.hero-image-float { transition: transform 0.3s ease-out; }

/* Enhanced WhatsApp Widget */
.whatsapp-widget { position: fixed; bottom: 25px; right: 25px; z-index: 998; }
.whatsapp-popup { display: none; position: absolute; bottom: 80px; right: 0; background: var(--white); border-radius: 20px; padding: 1.5rem; width: 280px; box-shadow: 0 15px 50px rgba(0,0,0,0.2); }
.whatsapp-popup.active { display: block; animation: fadeInUp 0.3s ease; }
.whatsapp-popup h4 { color: var(--gray-800); margin-bottom: 0.5rem; font-size: 1.1rem; }
.whatsapp-popup p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 1rem; }
.whatsapp-options { display: flex; flex-direction: column; gap: 0.5rem; }
.whatsapp-option { padding: 0.75rem; background: var(--gray-100); border-radius: 10px; border: none; text-align: left; cursor: pointer; font-size: 0.9rem; color: var(--gray-800); transition: all 0.3s; }
.whatsapp-option:hover { background: #25D366; color: var(--white); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Events Calendar */
.events-calendar { min-height: 200px; }
.events-loading, .events-empty, .events-error { text-align: center; padding: 3rem; color: var(--gray-600); }
.events-loading i, .events-empty i, .events-error i { font-size: 3rem; margin-bottom: 1rem; display: block; }
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.event-card { background: var(--white); border-radius: 20px; padding: 1.5rem; display: flex; gap: 1.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: all 0.3s; border-left: 4px solid var(--blue); }
.event-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.event-date { text-align: center; background: var(--gray-100); padding: 0.75rem; border-radius: 12px; min-width: 70px; }
.event-day { display: block; font-size: 2rem; font-weight: 700; color: var(--blue); line-height: 1; }
.event-month { display: block; font-size: 0.8rem; color: var(--gray-600); text-transform: uppercase; margin-top: 0.25rem; }
.event-info { flex: 1; }
.event-type { display: inline-block; background: var(--blue); color: var(--white); padding: 0.25rem 0.75rem; border-radius: 15px; font-size: 0.75rem; margin-bottom: 0.5rem; text-transform: capitalize; }
.event-card h4 { color: var(--gray-800); font-size: 1.1rem; margin-bottom: 0.5rem; }
.event-location, .event-time, .event-attendees { font-size: 0.85rem; color: var(--gray-600); margin: 0.25rem 0; display: flex; align-items: center; gap: 0.5rem; }
.event-location i, .event-time i, .event-attendees i { color: var(--blue); width: 16px; }

/* Countdown Timer */
.countdown { display: flex; gap: 1.5rem; justify-content: center; margin: 2rem 0; }
.countdown-item { text-align: center; background: rgba(255,255,255,0.15); padding: 1.5rem; border-radius: 16px; min-width: 100px; }
.countdown-number { display: block; font-size: 3rem; font-weight: 900; color: var(--yellow); font-family: 'Playfair Display', serif; line-height: 1; }
.countdown-label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-top: 0.5rem; text-transform: uppercase; }

/* Promotional Banner */
.promo-banner { background: linear-gradient(135deg, var(--red), #ff6b6b); color: var(--white); padding: 0.75rem 2rem; display: flex; justify-content: center; align-items: center; gap: 1rem; position: relative; z-index: 999; animation: slideDown 0.5s ease; }
.promo-banner.hidden { display: none; }
.promo-content { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; font-weight: 600; }
.promo-content i { font-size: 1.25rem; }
.promo-close { background: rgba(255,255,255,0.2); border: none; color: var(--white); width: 30px; height: 30px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; margin-left: 1rem; }
.promo-close:hover { background: rgba(255,255,255,0.3); transform: rotate(90deg); }
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (max-width: 768px) { .promo-banner { padding: 0.75rem 1rem; } .promo-content { font-size: 0.85rem; } }

/* ============================================
   MODERN REDESIGN - Enhanced Styles
   ============================================ */

/* Glassmorphism Effects */
.navbar { background: rgba(13, 27, 42, 0.85); backdrop-filter: blur(30px) saturate(180%); border-bottom: 1px solid rgba(255,255,255,0.1); }
.pricing-card, .service-card, .help-card { backdrop-filter: blur(10px); }
.pricing-card.featured { background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85)); box-shadow: 0 30px 60px rgba(30,58,95,0.2), 0 0 0 1px rgba(30,58,95,0.1); }

/* Modern Shadows */
.service-card:hover, .pricing-card:hover, .help-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(30,58,95,0.05); }
.btn-primary, .btn-pricing { box-shadow: 0 10px 25px rgba(244,196,48,0.3); }
.btn-primary:hover, .btn-pricing:hover { box-shadow: 0 15px 35px rgba(244,196,48,0.4); }

/* Smooth Transitions */
* { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* Modern Gradients */
.section-gradient { background: linear-gradient(180deg, #fefcf6 0%, #f8f9fa 100%); }
.hero::before { background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(244,196,48,0.2) 0%, transparent 70%); }

/* Floating Elements */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.hero-image-float { animation: float 6s ease-in-out infinite; }
.hero-image-float.top { animation-delay: 0s; }
.hero-image-float.bottom { animation-delay: 3s; }

/* Pulse Animation for CTAs */
@keyframes glow { 0%, 100% { box-shadow: 0 10px 25px rgba(244,196,48,0.3); } 50% { box-shadow: 0 15px 40px rgba(244,196,48,0.5), 0 0 30px rgba(244,196,48,0.3); } }
.btn-pricing.premium, .nav-cta { animation: glow 3s ease-in-out infinite; }

/* Modern Card Hover Effects */
.pricing-card { transform-origin: bottom; }
.pricing-card:hover { transform: translateY(-15px) scale(1.02); }
.service-card:hover { transform: translateY(-12px) rotateX(5deg); transform-style: preserve-3d; }

/* Improved Typography */
h1, h2, h3 { letter-spacing: -0.02em; }
.hero h1 { font-size: 4rem; text-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.section-header h2 { font-size: 3rem; }

/* Modern Borders */
.pricing-card, .service-card, .event-card { border: 1px solid rgba(30,58,95,0.08); }

/* Gradient Text */
.price-amount { background: linear-gradient(135deg, var(--blue), var(--blue-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Hover Lift */
.gallery-item { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.gallery-item:hover { transform: translateY(-10px) scale(1.05); z-index: 10; }

/* Modern Buttons */
.btn { font-size: 1.05rem; padding: 1.1rem 2.5rem; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.btn:hover { transform: translateY(-4px); }

/* Smooth Scroll Padding */
html { scroll-padding-top: 100px; }

/* Enhanced Focus States */
input:focus, textarea:focus, select:focus { box-shadow: 0 0 0 3px rgba(30,58,95,0.1); }

/* Modern Spacing */
.section { padding: 8rem 2rem; }
.section-header { margin-bottom: 5rem; }

/* Card Grid Improvements */
.services-grid, .pricing-grid { gap: 2.5rem; }

/* Backdrop Blur Support */
@supports (backdrop-filter: blur(30px)) {
    .navbar, .whatsapp-popup, .modal-booking { backdrop-filter: blur(30px) saturate(180%); }
}

/* Dark Mode Ready Variables */
[data-theme="dark"] { --cream: #1a1a1a; --white: #2d2d2d; --gray-800: #f0f0f0; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .section { padding: 5rem 1.5rem; }
    .section-header h2 { font-size: 2.25rem; }
}

/* ============================================
   WHITE & MODERN REDESIGN
   ============================================ */

/* Light Theme Override */
body { background: #ffffff; }

/* Sections - All White/Light */
.section-dark { background: #ffffff; color: var(--gray-800); border-top: 1px solid #f0f0f0; }
.section-blue { background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%); color: var(--gray-800); }
.section-gradient { background: #ffffff; }
.section-gold { background: linear-gradient(135deg, #fffbf0, #fff8e6); }

/* Modern White Cards */
.instrument-card { background: #ffffff; border: 1px solid #e8e8e8; }
.instrument-card h3, .instrument-card p { color: var(--gray-800); }
.instrument-card:hover { background: #fafafa; }

/* Testimonials Light */
.testimonial-card { background: #ffffff; border: 1px solid #e8e8e8; }
.testimonial-text { color: var(--gray-700); }
.testimonial-info h4, .testimonial-info p { color: var(--gray-800); }

/* Service Cards - Ultra Modern */
.service-card { background: #ffffff; box-shadow: 0 5px 20px rgba(0,0,0,0.04); border: 1px solid #f0f0f0; }
.service-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.08); transform: translateY(-10px); }

/* Pricing - Clean White */
.pricing-card { background: #ffffff; border: 2px solid #f0f0f0; }
.pricing-card.featured { background: linear-gradient(135deg, #fffbf0, #ffffff); border: 2px solid var(--yellow); }

/* Headers - Clean */
.section-header h2 { color: var(--blue-dark); }
.section-header p { color: #666; }
.section-dark .section-header h2, .section-blue .section-header h2 { color: var(--blue-dark); }
.section-dark .section-header p, .section-blue .section-header p { color: #666; }

/* Contact Section - Light */
.contact-wrapper { box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
.contact-info { background: linear-gradient(135deg, #f8f9fa, #ffffff); color: var(--gray-800); border-right: 1px solid #e8e8e8; }
.contact-info h3, .contact-info strong { color: var(--blue-dark); }
.contact-info span, .contact-info a, .contact-info > p { color: #666; }
.contact-item .icon { background: rgba(30,58,95,0.08); color: var(--blue); }

/* Help Section - Pure White */
.help-section { background: #ffffff; }
.help-card { border: 1px solid #f0f0f0; }

/* Gallery - Light Background */
.section-blue#gallery { background: #fafafa; }

/* Event Cards - Minimal */
.event-card { background: #ffffff; border: 1px solid #e8e8e8; border-left: 4px solid var(--blue); }
.event-type { background: rgba(30,58,95,0.08); color: var(--blue); }

/* Modern Spacing */
.container { max-width: 1300px; }
.section { padding: 100px 2rem; }

/* Clean Buttons */
.btn-outline { border-color: var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: white; }

/* Soft Shadows */
img { box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-radius: 20px; }

/* Footer - Soft Dark */
.footer { background: #1a1a1a; }

@media (max-width: 768px) { .section { padding: 60px 1.5rem; } }
