        :root {
            --red: #d62828;
            --yellow: #f4c430;
            --gold: #c9a227;
            --blue: #1e3a5f;
            --blue-dark: #1D385C;
            --blue-light: #2d5a87;
            --cream: #fefcf6;
            --white: #ffffff;
            --gray-100: #f8f9fa;
            --gray-200: #e9ecef;
            --gray-600: #6c757d;
            --gray-700: #495057;
            --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; }

        /* Top Bar */
        .top-bar { position: fixed; top: 0; width: 100%; z-index: 1001; background: #0a1628; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.78rem; color: rgba(255,255,255,0.7); transition: transform 0.3s; }
        .top-bar-inner { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0.35rem 2rem; }
        .top-bar-left { display: flex; align-items: center; gap: 1.25rem; }
        .top-bar-left a, .top-bar-left span { color: rgba(255,255,255,0.7); text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem; transition: color 0.2s; }
        .top-bar-left a:hover { color: white; }
        .top-bar-left i { font-size: 0.7rem; color: var(--yellow, #F4C430); }
        .top-bar-sep { color: rgba(255,255,255,0.2); }
        .top-bar-right { display: flex; align-items: center; gap: 1rem; }
        .top-bar-social { display: flex; gap: 0.75rem; }
        .top-bar-social a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color 0.2s; }
        .top-bar-social a:hover { color: white; }
        .top-bar-lang { display: flex; gap: 0.25rem; border-left: 1px solid rgba(255,255,255,0.15); padding-left: 1rem; }
        .top-bar-lang a { color: rgba(255,255,255,0.5); text-decoration: none; font-weight: 600; font-size: 0.75rem; padding: 0.15rem 0.4rem; border-radius: 3px; transition: all 0.2s; }
        .top-bar-lang a.active { color: white; background: rgba(255,255,255,0.15); }
        .top-bar-lang a:hover { color: white; }
        .top-bar.hidden { transform: translateY(-100%); }

        @media (max-width: 768px) {
            .top-bar { display: none; }
        }

        /* Navbar */
        .navbar { position: fixed; top: 34px; width: 100%; z-index: 1000; background: rgba(13, 27, 42, 0.95); backdrop-filter: blur(20px); padding: 0.75rem 0; transition: all 0.3s; }
        .navbar.scrolled { padding: 0.5rem 0; 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; padding: 0 2rem; }
        .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 { width: 36px; height: 36px; background: var(--yellow); color: var(--blue-dark); border-radius: 8px; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; }
        .nav-cta:hover { background: var(--gold); transform: translateY(-2px); }
        .nav-cta-outline { background: transparent; border: 2px solid var(--yellow); color: var(--yellow); }
        .nav-cta-outline:hover { background: var(--yellow); color: var(--blue-dark); }
        /* hamburger styles moved to bottom with mobile navbar rules */

        /* Search */
        .nav-search-btn { background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.9); font-size: 0.9rem; cursor: pointer; padding: 0.5rem 0.75rem; border-radius: 8px; transition: all 0.2s; display: flex; align-items: center; }
        .nav-search-btn:hover { background: var(--yellow); color: var(--blue-dark); border-color: var(--yellow); transform: translateY(-2px); }
        .nav-search-overlay { position: fixed; inset: 0; background: rgba(13,27,42,0.95); z-index: 10000; display: flex; align-items: flex-start; justify-content: center; padding-top: 20vh; opacity: 0; visibility: hidden; transition: all 0.3s; backdrop-filter: blur(8px); }
        .nav-search-overlay.active { opacity: 1; visibility: visible; }
        .nav-search-box { width: 90%; max-width: 650px; }
        .nav-search-form { display: flex; align-items: center; background: var(--white); border-radius: 16px; padding: 0.25rem 0.5rem 0.25rem 1.25rem; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
        .nav-search-icon { color: #999; font-size: 1.1rem; margin-right: 0.75rem; }
        .nav-search-form input { flex: 1; border: none; outline: none; font-size: 1.15rem; padding: 1rem 0; font-family: inherit; background: transparent; color: var(--blue-dark); }
        .nav-search-form input::placeholder { color: #bbb; }
        .nav-search-close { background: none; border: none; color: #999; font-size: 1.2rem; cursor: pointer; padding: 0.75rem; transition: color 0.2s; }
        .nav-search-close:hover { color: var(--blue-dark); }
        .nav-search-hints { margin-top: 1.25rem; text-align: center; }
        .nav-search-hints span { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-right: 0.5rem; }
        .nav-search-hints a { display: inline-block; padding: 0.35rem 0.9rem; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border-radius: 50px; font-size: 0.8rem; text-decoration: none; margin: 0.2rem; transition: all 0.2s; }
        .nav-search-hints a:hover { background: var(--yellow); color: var(--blue-dark); }

        /* 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: 1400px; margin: 0 auto; padding: 0 1rem; box-sizing: border-box; }
        .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: 1400px; 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: var(--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: #1D385C; color: var(--white); padding: 4rem 2rem 2rem; }
        .footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 2rem; 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: 1400px; margin: 0 auto; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
        .footer-legal { display: flex; gap: 0.5rem; align-items: center; }
        .footer-legal a { color: rgba(255,255,255,0.5); font-size: 0.85rem; text-decoration: none; transition: color 0.3s; }
        .footer-legal a:hover { color: var(--yellow); }
        .footer-legal .sep { color: rgba(255,255,255,0.3); font-size: 0.85rem; }
        .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); }
        .footer-whatsapp { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; padding: 0.6rem 1.25rem; background: #25D366; color: white; border-radius: 35px; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: all 0.3s; }
        .footer-whatsapp:hover { background: #20bd5a; transform: translateY(-2px); box-shadow: 0 5px 20px rgba(37,211,102,0.3); color: white; }
        .footer-whatsapp i { font-size: 1.1rem; }

        /* Heroes - global spacing */
        section[class*="-hero"] { position: relative; padding-top: 200px !important; padding-bottom: 100px !important; }
        .breadcrumbs { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.75rem 2rem; background: rgba(0,0,0,0.15); backdrop-filter: blur(4px); }
        .breadcrumbs-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; flex-wrap: wrap; }
        .breadcrumbs a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
        .breadcrumbs a:hover { color: white; }
        .breadcrumbs .sep { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
        .breadcrumbs .current { color: rgba(255,255,255,0.9); font-weight: 500; }

        /* Cookie Popup (left bottom) */
        .cookie-popup {
            position: fixed;
            bottom: 24px;
            left: 24px;
            z-index: 9998;
            display: none;
            animation: cookieSlideIn 0.4s ease;
        }
        .cookie-popup.visible { display: block; }
        .cookie-popup-inner {
            background: var(--white);
            border-radius: 20px;
            padding: 1.5rem;
            width: 320px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
        }
        .cookie-popup-icon {
            width: 48px; height: 48px;
            background: linear-gradient(135deg, var(--yellow), var(--gold));
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem; color: var(--blue-dark);
            margin-bottom: 1rem;
        }
        .cookie-popup p {
            margin: 0 0 1.25rem;
            font-size: 0.9rem;
            color: var(--gray-800);
            line-height: 1.6;
        }
        .cookie-popup-actions { display: flex; align-items: center; gap: 1rem; }
        .cookie-popup-accept {
            padding: 0.65rem 1.5rem;
            background: linear-gradient(135deg, var(--blue), var(--blue-light));
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .cookie-popup-accept:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(30,58,95,0.3); }
        .cookie-popup-more {
            font-size: 0.85rem;
            color: var(--gray-600);
            font-weight: 500;
        }
        .cookie-popup-more:hover { color: var(--blue); }
        @keyframes cookieSlideIn {
            from { opacity: 0; transform: translateY(20px) translateX(-10px); }
            to { opacity: 1; transform: translateY(0) translateX(0); }
        }
        @media (max-width: 480px) {
            .cookie-popup { left: 12px; right: 12px; bottom: 12px; }
            .cookie-popup-inner { width: auto; }
        }

        /* Footer Legal Links - styled in .footer-bottom block */

        /* Legacy cookie classes (keep for backwards compat) */
        .cookie-banner { display: none !important; }

        /* 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: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            .nav-menu .nav-link { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: block; width: 100%; text-align: center; }
            .nav-menu > li { width: 100%; }
            .nav-link-drop { justify-content: center; }
            .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-wrap: wrap; justify-content: center; 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); }
.booking-wizard .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 — see full block below */

@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: var(--white); }

/* Sections - All White/Light */
.section-dark { background: var(--white); color: var(--gray-800); border-top: 1px solid var(--gray-200, #f0f0f0); }
.section-blue { background: var(--white); color: var(--gray-800); }
.section-gradient { background: var(--white); }
.section-gold { background: var(--cream); }

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

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

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

/* Pricing - Clean White */
.pricing-card { background: var(--white); border: 2px solid var(--gray-200, #f0f0f0); }
.pricing-card.featured { background: var(--white); border: 2px solid var(--yellow); }

/* Headers - Clean */
.section-header h2 { color: var(--blue-dark); }
.section-header p { color: var(--gray-600, #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: var(--gray-600, #666); }

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

/* Help Section - Pure White */
.help-section { background: var(--white); }
.help-card { border: 1px solid var(--gray-200, #f0f0f0); }

/* Gallery - Light Background */
.section-blue#gallery { background: var(--gray-100, #fafafa); }

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

/* Modern Spacing */
.container { max-width: 1400px; }
.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; }
.navbar img, .nav-brand img { box-shadow: none; border-radius: 0; }

/* Footer */
.footer { background: #1D385C; }

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

/* ============================================
   MEGA MENU DROPDOWNS
   ============================================ */

/* Dropdown container */
.nav-dropdown { position: relative; }
.nav-menu { align-items: center; }
.nav-menu > li { display: flex; align-items: center; }
.nav-link-drop { display: flex; align-items: center; gap: 0.4rem; }
.nav-link-drop .fa-chevron-down { font-size: 0.6rem; transition: transform 0.3s; opacity: 0.6; }
.nav-dropdown:hover .fa-chevron-down,
.nav-dropdown.mob-open .fa-chevron-down { transform: rotate(180deg); opacity: 1; }

/* Mega dropdown panel */
.mega-drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
    z-index: 1001;
    padding-top: 10px;
    animation: megaFadeIn 0.25s ease;
}
@keyframes megaFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(8px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.mega-drop::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    width: 16px;
    height: 16px;
    background: var(--white);
    border-radius: 3px;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0,0,0,0.04);
}
.mega-drop.open {
    display: block;
}
.mega-drop-inner { padding: 0.75rem; background: var(--white); border-radius: 20px; overflow: hidden; }

/* Dropdown items */
.mega-drop-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    color: var(--gray-800);
    text-decoration: none;
    transition: all 0.25s;
}
.mega-drop-item:hover {
    background: linear-gradient(135deg, rgba(30,58,95,0.06), rgba(244,196,48,0.08));
    transform: translateX(4px);
}
.mega-drop-item i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(30,58,95,0.25);
}
.mega-drop-item:hover i {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--yellow), var(--gold));
    color: var(--blue-dark);
}
.mega-drop-item > div { display: flex; flex-direction: column; min-width: 0; }
.mega-drop-item strong { font-size: 0.95rem; color: var(--blue-dark); font-weight: 700; display: block; }
.mega-drop-item span { font-size: 0.82rem; color: #888; margin-top: 3px; display: block; }
.mega-drop-item i.fas,
.mega-drop-item i.fab { box-shadow: none; border-radius: 12px; }

/* Mobile dropdown adjustments - accordion style */
@media (max-width: 768px) {
    .nav-dropdown { display: flex; flex-direction: column; align-items: center; width: 100%; }
    .mega-drop {
        position: static;
        transform: none;
        width: 100%;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        padding: 0;
        animation: none;
        display: block;
        transition: max-height 0.3s ease;
    }
    .mega-drop::before { display: none; }
    .mega-drop-inner {
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav-dropdown.mob-open .mega-drop {
        max-height: 500px;
        padding: 0.25rem 0 0.5rem;
    }
    .nav-dropdown.mob-open .nav-link-drop .fa-chevron-down { transform: rotate(180deg); opacity: 1; }
    .mega-drop-item { padding: 0.6rem 0; border-radius: 0; margin: 0; flex-direction: column; align-items: center; text-align: center; gap: 0.3rem; width: 100%; }
    .mega-drop-item i { background: none; width: auto; height: auto; font-size: 0.85rem; box-shadow: none; border-radius: 0; color: rgba(255,255,255,0.5); }
    .mega-drop-item > div { align-items: center; }
    .mega-drop-item strong { color: rgba(255,255,255,0.95); font-size: 0.9rem; }
    .mega-drop-item span { display: none; }
    .mega-drop-item:hover, .mega-drop-item:active { background: rgba(255,255,255,0.1); }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger for grids */
.features-grid .reveal:nth-child(1) { transition-delay: 0s; }
.features-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.features-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.features-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.features-grid .reveal:nth-child(6) { transition-delay: 0.5s; }

/* Enhanced hover micro-interactions */
.feature-box { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.feature-box:hover { transform: translateY(-15px) scale(1.02); }
.feature-box:active { transform: translateY(-5px) scale(0.98); }

/* Link underline animation */
.nav-link { position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--yellow);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}
.nav-link:hover::after,
.nav-link.active::after { width: 60%; }

/* Smooth page load */
@keyframes pageLoad {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
body { animation: pageLoad 0.6s ease-out; }

/* Button ripple effect */
.btn { position: relative; overflow: hidden; }
.btn::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: 50%;
    left: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s;
    pointer-events: none;
}
.btn:active::after { transform: translate(-50%, -50%) scale(1); transition: transform 0s; }

/* Parallax-like text shadow on scroll */
.hero h1 { transition: text-shadow 0.3s; }

/* Section divider wave */
.section::before {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--gold));
    border-radius: 2px;
    margin: 0 auto 3rem;
    opacity: 0.5;
}
.section:first-of-type::before,
.hero::before,
.hero-home::before { display: none; width: auto; height: auto; margin: 0; opacity: 1; background: none; }

/* Card shine effect on hover */
.service-card::after,
.pricing-card::after,
.feature-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: transform 0.6s;
    pointer-events: none;
}
.service-card:hover::after,
.pricing-card:hover::after,
.feature-box:hover::after {
    transform: rotate(45deg) translate(30%, 30%);
}

/* ============================================
   MOBILE NAVBAR - 2 ROWS
   ============================================ */

/* Mobile search row - hidden on desktop */
.nav-mobile-search { display: none; }
/* Close button + dark toggle - hidden on desktop */
.nav-menu-close-li { display: none !important; }
.nav-menu-close { display: none; }
.nav-menu-dark-btn { display: none; background: none; border: none; cursor: pointer; font-size: 1.2rem; color: rgba(255,255,255,0.85); padding: 8px; }
/* Hamburger - hidden on desktop, shown on mobile */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: #ffffff; 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); }

@media (max-width: 768px) {
    /* Prevent horizontal overflow on mobile */
    html, body { overflow-x: hidden; }

    /* Breadcrumbs: static flow on mobile instead of absolute */
    .breadcrumbs { position: relative; bottom: auto; padding: 0.6rem 1rem; margin-top: 1.25rem; border-radius: 8px; background: rgba(0,0,0,0.2); }
    .breadcrumbs-inner { font-size: 0.75rem; gap: 0.35rem; }

    /* Heroes: adjusted for mobile (no top-bar, navbar at top:0) */
    section[class*="-hero"] { padding-top: 130px !important; padding-bottom: 70px !important; padding-left: 1.25rem !important; padding-right: 1.25rem !important; }

    /* Hide top-bar on mobile */
    .top-bar { display: none; }

    /* Two-row navbar layout */
    .navbar {
        position: fixed;
        top: 0 !important;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        padding: 0;
        z-index: 1000;
    }

    /* Row 1: Hamburger (left) | Logo (center) | Login (right) */
    .nav-container {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
        padding: 0.4rem 0.75rem;
        box-sizing: border-box;
    }

    /* Logo centered */
    .nav-brand {
        flex: 1;
        display: flex;
        justify-content: center;
        min-width: 0;
    }
    .nav-brand img { height: 38px !important; margin-top: 4px; }

    /* Actions (login) right */
    .nav-actions { flex-shrink: 0; gap: 0.4rem; }

    /* Hide desktop search button on mobile */
    .nav-search-btn { display: none; }

    /* Hide register button on mobile */
    .nav-cta-outline { display: none; }

    /* Hide dark mode toggle from header on mobile — it's inside the nav-menu */
    .nav-dark-toggle { display: none !important; }

    /* Compact login icon */
    .nav-cta { width: 32px; height: 32px; font-size: 0.85rem; border-radius: 8px; flex-shrink: 0; }

    /* Hamburger always visible */
    .hamburger { display: flex !important; flex-shrink: 0; width: 44px; }

    /* Row 2: Search bar */
    .nav-mobile-search {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 0.4rem 0.75rem;
        background: rgba(0,0,0,0.15);
        border-top: 1px solid rgba(255,255,255,0.08);
        box-sizing: border-box;
    }
    .nav-mobile-search-form {
        display: flex;
        align-items: center;
        background: rgba(255,255,255,0.1);
        border-radius: 25px;
        padding: 0.4rem 0.85rem;
        gap: 0.5rem;
    }
    .nav-mobile-search-form i {
        color: rgba(255,255,255,0.5);
        font-size: 0.8rem;
        flex-shrink: 0;
    }
    .nav-mobile-search-form input {
        background: none;
        border: none;
        color: white;
        font-size: 0.85rem;
        width: 100%;
        min-width: 0;
        outline: none;
    }
    .nav-mobile-search-form input::placeholder {
        color: rgba(255,255,255,0.4);
    }

    /* Nav menu slides from left (like intranet sidebar) */
    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        background: var(--blue-dark, #1D385C);
        padding: 1rem 1.5rem 2rem;
        z-index: 10001;
        transition: left 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
        align-items: center;
        text-align: center;
        box-shadow: 5px 0 20px rgba(0,0,0,0.15);
    }
    .nav-menu.active { left: 0; }

    /* Menu overlay - must be below navbar z-index so menu links are clickable */
    .nav-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .nav-menu-overlay.active { opacity: 1; visibility: visible; }

    /* Close button inside mobile menu — same position as hamburger */
    .nav-menu-close-li { list-style: none; display: flex !important; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; width: 100%; padding: 0.5rem 0; }
    .nav-menu-close {
        background: rgba(255,255,255,0.1);
        border: none;
        color: white;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }
    .nav-menu-close:hover { background: rgba(255,255,255,0.2); }
    .nav-menu-dark-btn { display: flex !important; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); width: 44px; height: 44px; border-radius: 8px; color: rgba(255,255,255,0.85); cursor: pointer; transition: all 0.3s; border: none; font-size: 1.2rem; }
    .nav-menu-dark-btn:hover { background: rgba(255,255,255,0.2); color: white; }
}
.skip-link { position: absolute; top: -100px; left: 0; background: var(--blue-dark); color: white; padding: 0.75rem 1.5rem; z-index: 99999; font-weight: 600; border-radius: 0 0 8px 0; transition: top 0.3s; }
.skip-link:focus { top: 0; }
button.faq-question { border: none; width: 100%; text-align: left; font-size: inherit; font-family: inherit; }

/* Dark Mode Toggle Button */
/* Dark toggle: hidden everywhere, only visible inside mobile menu header */
.nav-dark-toggle { display: none !important; }

/* Dark Mode — Complete */
[data-theme="dark"] {
    --cream: #121212;
    --white: #1e1e1e;
    --gray-100: #252525;
    --gray-200: #333;
    --gray-600: #aaa;
    --gray-700: #bbb;
    --gray-800: #e0e0e0;
    --blue-dark: #141821;
}

/* Base */
[data-theme="dark"] body { background: #121212; color: #f0f0f0; }
[data-theme="dark"] a { color: #8cc5f0; }
[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3,
[data-theme="dark"] h4, [data-theme="dark"] h5, [data-theme="dark"] h6 { color: #ffffff; }
[data-theme="dark"] p, [data-theme="dark"] li, [data-theme="dark"] span,
[data-theme="dark"] label, [data-theme="dark"] small { color: #e0e0e0; }
[data-theme="dark"] strong, [data-theme="dark"] b { color: #f5f5f5; }

/* Navbar */
[data-theme="dark"] .navbar { background: rgba(18, 18, 18, 0.95); }
[data-theme="dark"] .nav-link, [data-theme="dark"] .nav-link-drop { color: #e0e0e0; }
[data-theme="dark"] .top-bar { background: #0a0a0a; color: #ccc; }
[data-theme="dark"] .nav-menu { background: #1a1a1a; }
[data-theme="dark"] .nav-menu .nav-link { color: rgba(255,255,255,0.85); }
[data-theme="dark"] .nav-menu .mega-drop-inner { background: rgba(255,255,255,0.05); }
[data-theme="dark"] .hamburger span { background: white; }

/* Footer */
[data-theme="dark"] .footer { background: #0a0a0a; }

/* Sections — override WHITE REDESIGN backgrounds */
[data-theme="dark"] .section-dark { background: #121212; color: #e0e0e0; border-color: #333; }
[data-theme="dark"] .section-blue { background: #141414; color: #e0e0e0; }
[data-theme="dark"] .section-gradient { background: #121212; }
[data-theme="dark"] .section-gold { background: #1a1810; }
[data-theme="dark"] .help-section { background: #121212; }
[data-theme="dark"] .section-blue#gallery { background: #141414; }
[data-theme="dark"] section[class*="-hero"] { filter: brightness(0.9); }

/* Section Headers */
[data-theme="dark"] .section-header h2 { color: #ffffff; }
[data-theme="dark"] .section-header p { color: #ccc; }
[data-theme="dark"] .section-dark .section-header h2,
[data-theme="dark"] .section-blue .section-header h2 { color: #ffffff; }
[data-theme="dark"] .section-dark .section-header p,
[data-theme="dark"] .section-blue .section-header p { color: #ccc; }

/* Cards — all types */
[data-theme="dark"] .feature-box,
[data-theme="dark"] .help-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .event-card,
[data-theme="dark"] .zone-card,
[data-theme="dark"] .contact-wrapper,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .instrument-card,
[data-theme="dark"] .school-card,
[data-theme="dark"] .about-feature,
[data-theme="dark"] .modal-booking,
[data-theme="dark"] .whatsapp-popup,
[data-theme="dark"] .toast { background: #1e1e1e; border-color: #333; color: #e0e0e0; }

/* Card text */
[data-theme="dark"] .feature-box h3, [data-theme="dark"] .feature-box p,
[data-theme="dark"] .help-card h3, [data-theme="dark"] .help-card p, [data-theme="dark"] .help-card li,
[data-theme="dark"] .service-card h3, [data-theme="dark"] .service-card p,
[data-theme="dark"] .pricing-card h3, [data-theme="dark"] .pricing-card p, [data-theme="dark"] .pricing-card li,
[data-theme="dark"] .event-card h3, [data-theme="dark"] .event-card p, [data-theme="dark"] .event-card span,
[data-theme="dark"] .instrument-card h3, [data-theme="dark"] .instrument-card p,
[data-theme="dark"] .testimonial-text, [data-theme="dark"] .testimonial-info h4,
[data-theme="dark"] .testimonial-info p,
[data-theme="dark"] .school-card h3, [data-theme="dark"] .school-card p { color: #f0f0f0; }

/* Pricing featured */
[data-theme="dark"] .pricing-card.featured { background: #252525; border-color: var(--yellow); }

/* FAQ */
[data-theme="dark"] .faq-question { color: #f5f5f5; }
[data-theme="dark"] .faq-answer, [data-theme="dark"] .faq-answer p { color: #ddd; }

/* Event cards */
[data-theme="dark"] .event-card { border-left-color: #7ab3e0; }
[data-theme="dark"] .event-type { background: rgba(122,179,224,0.15); color: #7ab3e0; }

/* Contact */
[data-theme="dark"] .contact-info { background: #1a1a1a; border-color: #333; color: #e0e0e0; }
[data-theme="dark"] .contact-info h3, [data-theme="dark"] .contact-info strong { color: #ffffff; }
[data-theme="dark"] .contact-info span, [data-theme="dark"] .contact-info a,
[data-theme="dark"] .contact-info > p { color: #ddd; }
[data-theme="dark"] .contact-item .icon { background: rgba(122,179,224,0.15); color: #7ab3e0; }
[data-theme="dark"] .contacte-form { background: #1e1e1e; }
[data-theme="dark"] .contacte-form input,
[data-theme="dark"] .contacte-form select,
[data-theme="dark"] .contacte-form textarea { background: #252525; border-color: #444; color: #e0e0e0; }

/* Forms generic */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select { background: #252525; border-color: #444; color: #e0e0e0; }
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus,
[data-theme="dark"] .form-group select:focus { background: #2a2a2a; border-color: #7ab3e0; }
[data-theme="dark"] .form-group label { color: #ddd; }
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder { color: #777; }

/* Mega Menu */
[data-theme="dark"] .mega-drop { background: #1e1e1e; }
[data-theme="dark"] .mega-drop::before { background: #1e1e1e; }
[data-theme="dark"] .mega-drop-inner { background: #1e1e1e; }
[data-theme="dark"] .mega-drop-item { color: #e0e0e0; }
[data-theme="dark"] .mega-drop-item strong { color: #f0f0f0; }
[data-theme="dark"] .mega-drop-item span { color: #999; }
[data-theme="dark"] .mega-drop-item:hover { background: rgba(255,255,255,0.06); }

/* Search */
[data-theme="dark"] .nav-search-form { background: #1e1e1e; }
[data-theme="dark"] .nav-search-form input { color: #e0e0e0; background: transparent; }

/* Breadcrumbs */
[data-theme="dark"] .breadcrumbs { background: rgba(0,0,0,0.3); }
[data-theme="dark"] .breadcrumbs a, [data-theme="dark"] .breadcrumbs span { color: #ccc; }

/* Calendar */
[data-theme="dark"] .cal-day { background: #1e1e1e; border-color: #333; }
[data-theme="dark"] .cal-header { background: #0a0a0a; color: #e0e0e0; }

/* Gallery */
[data-theme="dark"] .gal-tabs { background: #1e1e1e; border-color: #333; }
[data-theme="dark"] .gal-tabs button { color: #ccc; }
[data-theme="dark"] .gal-tabs button.active { color: #fff; }

/* Images */
[data-theme="dark"] img { box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* Buttons */
[data-theme="dark"] .btn { color: #1a1a1a; }
[data-theme="dark"] .btn-primary { color: #1a1a1a; }
[data-theme="dark"] .btn-outline { border-color: #7ab3e0; color: #7ab3e0; }
[data-theme="dark"] .btn-outline:hover { background: #7ab3e0; color: #1a1a1a; }

/* Cookie popup */
[data-theme="dark"] .cookie-popup-inner { background: #1e1e1e; }
[data-theme="dark"] .cookie-popup p { color: #ccc; }

/* Newsletter */
[data-theme="dark"] .newsletter-section { background: #141414; }
[data-theme="dark"] .newsletter-section h2, [data-theme="dark"] .newsletter-section p { color: #e0e0e0; }
[data-theme="dark"] .newsletter-section input[type="email"] { background: #252525; border-color: #444; color: #e0e0e0; }

/* Back to top */
[data-theme="dark"] .back-to-top { box-shadow: 0 5px 20px rgba(0,0,0,0.5); }

/* Sticky CTA */
[data-theme="dark"] .sticky-cta { background: rgba(18,18,18,0.95); }

/* Blog */
[data-theme="dark"] .blog-card { background: #1e1e1e; border-color: #333; color: #e0e0e0; }
[data-theme="dark"] .blog-card h3, [data-theme="dark"] .blog-card p { color: #ddd; }
[data-theme="dark"] .blog-post-content { color: #ccc; }
[data-theme="dark"] .blog-post-content h2, [data-theme="dark"] .blog-post-content h3 { color: #f0f0f0; }

/* ============================================
   Dark Mode — Page-specific $extraCss overrides
   Catch-all for ALL white backgrounds in pages
   ============================================ */

/* Sections with background: white in extraCss */
[data-theme="dark"] .act-stats,
[data-theme="dark"] .act-upcoming,
[data-theme="dark"] .assajos-main,
[data-theme="dark"] .biblio-intro,
[data-theme="dark"] .colles-stats,
[data-theme="dark"] .historia-content,
[data-theme="dark"] .family-section,
[data-theme="dark"] .curiositats,
[data-theme="dark"] .fonts-section,
[data-theme="dark"] .inst-intro,
[data-theme="dark"] .inst-section.bg-white,
[data-theme="dark"] .muix-intro,
[data-theme="dark"] .muix-history,
[data-theme="dark"] .muix-lletra,
[data-theme="dark"] .partitures-content,
[data-theme="dark"] .consells-section,
[data-theme="dark"] .serveis-intro,
[data-theme="dark"] .zones-section,
[data-theme="dark"] .features-home,
[data-theme="dark"] .faq-section,
[data-theme="dark"] .qs-stats,
[data-theme="dark"] .qs-cta { background: linear-gradient(135deg, #b8941f, #a07c10); }

/* Cards with background: white in extraCss */
[data-theme="dark"] .event-card,
[data-theme="dark"] .zone-card,
[data-theme="dark"] .benefit-card,
[data-theme="dark"] .book-card,
[data-theme="dark"] .colla-card,
[data-theme="dark"] .folc-card,
[data-theme="dark"] .festa-card,
[data-theme="dark"] .indum-card,
[data-theme="dark"] .part-card,
[data-theme="dark"] .muix-card,
[data-theme="dark"] .repertori-card,
[data-theme="dark"] .consell-card,
[data-theme="dark"] .servei-card,
[data-theme="dark"] .extra-card,
[data-theme="dark"] .tarifa-faq-item,
[data-theme="dark"] .vot-card,
[data-theme="dark"] .vot-modal,
[data-theme="dark"] .vot-action-btn,
[data-theme="dark"] .feature-box,
[data-theme="dark"] .help-card,
[data-theme="dark"] .faq-question,
[data-theme="dark"] .qs-role,
[data-theme="dark"] .qs-thanks-card,
[data-theme="dark"] .post-nav-item,
[data-theme="dark"] .related-card,
[data-theme="dark"] .featured-card,
[data-theme="dark"] .sidebar-widget,
[data-theme="dark"] .pdf-card,
[data-theme="dark"] .spec-box,
[data-theme="dark"] .xirimita-card,
[data-theme="dark"] .fab-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .contacte-grid,
[data-theme="dark"] .blog-card { background: #1e1e1e; border-color: #333; color: #e0e0e0; }

/* Cards with gradient backgrounds (#f8f9fa -> #ffffff) */
[data-theme="dark"] .assajos-card,
[data-theme="dark"] .family-card,
[data-theme="dark"] .curiositat-card,
[data-theme="dark"] .recurs-card,
[data-theme="dark"] .zone-card { background: #1e1e1e; }

/* Nav/bars with white backgrounds */
[data-theme="dark"] .folc-nav,
[data-theme="dark"] .gal-tabs,
[data-theme="dark"] .search-bar,
[data-theme="dark"] .cal-nav a { background: #1e1e1e; border-color: #333; }

/* Calendar */
[data-theme="dark"] .cal-day { background: #1e1e1e; border-color: #333; }
[data-theme="dark"] .cal-day.today { background: #2a2510; border-color: var(--yellow); }

/* Sections nth-child with white */
[data-theme="dark"] .biblio-section:nth-child(odd),
[data-theme="dark"] .province-section:nth-child(odd),
[data-theme="dark"] .folc-section:nth-child(even),
[data-theme="dark"] .qs-section:nth-child(odd) { background: #121212; }

/* Inputs/selects with white bg */
[data-theme="dark"] .sidebar-dropdown select,
[data-theme="dark"] .sidebar-search input,
[data-theme="dark"] .cerca-form input,
[data-theme="dark"] .vot-modal input,
[data-theme="dark"] .vot-modal select,
[data-theme="dark"] .vot-modal textarea { background: #252525; border-color: #444; color: #e0e0e0; }

/* Sticky CTA mobile */
[data-theme="dark"] .sticky-cta-mobile { background: #1e1e1e; box-shadow: 0 -4px 20px rgba(0,0,0,0.3); }

/* Legal pages inline style override */
[data-theme="dark"] [style*="background: white"],
[data-theme="dark"] [style*="background:white"] { background: #121212 !important; }

/* Video items */
[data-theme="dark"] .video-item { background: #1e1e1e; }

/* All text in dark mode pages */
[data-theme="dark"] .event-card h3, [data-theme="dark"] .event-card p,
[data-theme="dark"] .zone-card h3, [data-theme="dark"] .zone-card p,
[data-theme="dark"] .benefit-card h3, [data-theme="dark"] .benefit-card p,
[data-theme="dark"] .book-card h3, [data-theme="dark"] .book-card p,
[data-theme="dark"] .colla-card h4, [data-theme="dark"] .colla-card p,
[data-theme="dark"] .folc-card h3, [data-theme="dark"] .folc-card p,
[data-theme="dark"] .festa-card h3, [data-theme="dark"] .festa-card p,
[data-theme="dark"] .part-card h3, [data-theme="dark"] .part-card p,
[data-theme="dark"] .muix-card h3, [data-theme="dark"] .muix-card p,
[data-theme="dark"] .servei-card h3, [data-theme="dark"] .servei-card p,
[data-theme="dark"] .extra-card h4, [data-theme="dark"] .extra-card p,
[data-theme="dark"] .tarifa-faq-item p,
[data-theme="dark"] .vot-card h3, [data-theme="dark"] .vot-card p,
[data-theme="dark"] .pdf-card .pdf-name,
[data-theme="dark"] .qs-role h3, [data-theme="dark"] .qs-role p,
[data-theme="dark"] .featured-card h2, [data-theme="dark"] .featured-card p,
[data-theme="dark"] .sidebar-widget h3, [data-theme="dark"] .sidebar-widget p,
[data-theme="dark"] .post-nav-item span { color: #f0f0f0; }

/* Propies card special */
[data-theme="dark"] .propies-card { background: #252525 !important; border-color: var(--yellow) !important; }

/* Badge backgrounds that are very light */
[data-theme="dark"] .badge-programado { background: #3a2a10; color: #ffb74d; }
[data-theme="dark"] .vot-badge-pending { background: #3a2a10; color: #ffb74d; }
[data-theme="dark"] .result-icon.repertori,
[data-theme="dark"] .result-type.repertori { background: #3a2a10; color: #ffb74d; }

/* Repertori page */
[data-theme="dark"] .repo-sidebar { background: #1a1a1a; border-color: #333; }
[data-theme="dark"] .repo-section:nth-child(even) { background: #1a1a1a; }
[data-theme="dark"] .repo-section { background: #121212; }
[data-theme="dark"] .repo-title { color: #f0f0f0; }
[data-theme="dark"] .repo-desc { color: #bbb; }
[data-theme="dark"] .pdf-name { color: #f0f0f0; }
[data-theme="dark"] .pdf-size { color: #999; }
[data-theme="dark"] .pdf-dl { color: #8cc5f0; }
[data-theme="dark"] .sidebar-nav li a { color: #ccc; border-left-color: transparent; }
[data-theme="dark"] .sidebar-nav li a:hover { background: rgba(255,255,255,0.05); color: #f0f0f0; }
[data-theme="dark"] .sidebar-nav li a.active { background: rgba(122,179,224,0.1); color: #8cc5f0; border-left-color: #8cc5f0; }
[data-theme="dark"] .sidebar-nav li a .s-cnt { background: #333; color: #ccc; }
[data-theme="dark"] .sidebar-title { color: #888; }
[data-theme="dark"] .search-input { background: #252525; border-color: #444; color: #e0e0e0; }
[data-theme="dark"] .search-input:focus { border-color: #8cc5f0; }
[data-theme="dark"] .no-results { color: #999; }
[data-theme="dark"] .no-results i { color: #555; }

/* Votacions badges */
[data-theme="dark"] .vot-badge-ok { background: #0f3a25; color: #6fcf97; }

/* Dark mode toggle icon: sun when dark */
[data-theme="dark"] .nav-dark-toggle i::before { content: "\f185"; }
