
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root { --primary: #75C4E7; --dark: #1a1a2e; --white: #ffffff; }
        body { font-family: 'Montserrat', sans-serif; }
        a { text-decoration: none; color: inherit; }
        .header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 15px 0; background: var(--primary); box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; padding: 0 40px; }
        .logo { display: flex; align-items: center; gap: 8px; font-size: 1.8rem; }
        .logo .anima { color: var(--white); font-weight: 700; }
        .logo .musica { color: var(--white); font-weight: 600; }
        .nav { display: flex; align-items: center; gap: 35px; }
        .nav-link { color: var(--white); font-weight: 500; font-size: 0.95rem; padding: 8px 0; position: relative; }
        .nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--white); transition: width 0.3s; }
        .nav-link:hover::after { width: 100%; }
        .btn-contact-header { background: var(--white); color: var(--primary); padding: 12px 28px; border-radius: 30px; font-weight: 600; transition: all 0.3s; border: 2px solid var(--white); }
        .btn-contact-header:hover { background: transparent; color: var(--white); }
        .burger { display: none; flex-direction: column; width: 40px; height: 40px; cursor: pointer; z-index: 1001; background: none; border: none; justify-content: center; align-items: center; }
        .burger span { display: block; width: 28px; height: 3px; background: var(--white); border-radius: 3px; transition: all 0.3s; margin: 3px 0; }
        
        .nav.active {
            display: flex !important;
            flex-direction: column;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: var(--primary);
            padding: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        
        .burger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
        .burger.active span:nth-child(2) { opacity: 0; }
        .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
        
        .hero { min-height: 85vh; background: linear-gradient(135deg, #75C4E7 0%, #6AD5E7 100%); display: flex; align-items: center; justify-content: center; padding-top: 80px; color: white; }
        .hero-content { text-align: center; padding: 0 20px; max-width: 1000px; }
        .hero h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 25px; line-height: 1.2; }
        .hero .subtitle { font-size: 1.4rem; margin-bottom: 20px; opacity: 0.95; }
        .hero .sub-subtitle { font-size: 1.1rem; margin-bottom: 40px; opacity: 0.9; }
        .hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
        .btn-hero { padding: 18px 40px; border-radius: 30px; font-weight: 600; font-size: 1.05rem; transition: all 0.3s; }
        .btn-hero.primary { background: white; color: var(--primary); border: 2px solid white; }
        .btn-hero.primary:hover { background: transparent; color: white; }
        .btn-hero.secondary { background: transparent; color: white; border: 2px solid white; }
        .btn-hero.secondary:hover { background: white; color: var(--primary); }
        
        .zones-section { background: white; padding: 80px 20px; }
        .container { max-width: 1200px; margin: 0 auto; }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header span { display: block; color: var(--primary); font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .section-header h2 { font-size: 2.5rem; font-weight: 700; color: var(--dark); }
        .section-header h2 em { color: var(--primary); font-style: normal; }
        .zones-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-bottom: 50px; }
        .zone-card { background: #f8f9fa; padding: 30px; border-radius: 15px; border-left: 4px solid var(--primary); transition: all 0.3s; }
        .zone-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .zone-card h3 { color: var(--dark); font-size: 1.3rem; margin-bottom: 15px; font-weight: 600; }
        .zone-card ul { list-style: none; padding: 0; }
        .zone-card li { color: #666; padding: 8px 0; padding-left: 20px; position: relative; }
        .zone-card li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: bold; }
        
        .services-section { background: #f8f9fa; padding: 80px 20px; }
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }
        .service-card { background: white; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); transition: transform 0.3s; padding: 40px; }
        .service-card:hover { transform: translateY(-10px); }
        .service-card h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 20px; font-weight: 700; }
        .service-card p { color: #666; line-height: 1.8; margin-bottom: 25px; font-size: 1.05rem; }
        .service-features { list-style: none; padding: 0; }
        .service-features li { color: #555; padding: 8px 0; padding-left: 25px; position: relative; font-size: 0.95rem; }
        .service-features li::before { content: '•'; position: absolute; left: 8px; color: var(--primary); font-weight: bold; font-size: 1.3rem; }
        
        .testimonials-section { background: white; padding: 80px 20px; }
        .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
        .testimonial-card { background: #f8f9fa; padding: 40px; border-radius: 15px; border-left: 4px solid var(--primary); position: relative; }
        .testimonial-quote { font-size: 4rem; color: var(--primary); opacity: 0.15; position: absolute; top: 15px; left: 25px; line-height: 1; font-family: Georgia, serif; }
        .testimonial-text { font-style: italic; color: #333; line-height: 1.9; margin-bottom: 25px; position: relative; z-index: 1; font-size: 1.05rem; }
        .testimonial-author { font-weight: 700; color: var(--dark); font-size: 1.05rem; margin-bottom: 5px; }
        .testimonial-location { color: #666; font-size: 0.9rem; }
        
        .cta-section { background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%); color: white; padding: 80px 20px; text-align: center; }
        .cta-section h2 { font-size: 2.8rem; margin-bottom: 20px; font-weight: 700; }
        .cta-section p { font-size: 1.3rem; margin-bottom: 40px; opacity: 0.9; }
        .cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
        .btn-cta { padding: 18px 45px; border-radius: 30px; font-weight: 600; font-size: 1.1rem; transition: all 0.3s; }
        .btn-cta.primary { background: var(--primary); color: white; border: 2px solid var(--primary); }
        .btn-cta.primary:hover { background: #5BA8C9; }
        .btn-cta.secondary { background: transparent; color: white; border: 2px solid white; }
        .btn-cta.secondary:hover { background: white; color: var(--dark); }
        
        /* ==================== SERVICES PHOTOS ==================== */
        .services-photos-section { padding: 100px 20px; background: white; }
        .services-photos-section .section-header { text-align: center; margin-bottom: 80px; }
        .services-photos-section .section-header span { display: block; color: var(--primary); font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .services-photos-section .section-header h2 { font-size: 2.5rem; font-weight: 700; color: var(--dark); }
        .service-item { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; max-width: 1200px; margin-left: auto; margin-right: auto; }
        .service-item.reverse { direction: rtl; }
        .service-item.reverse > * { direction: ltr; }
        .service-image-wrapper { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
        .service-image-wrapper img { width: 100%; height: 400px; object-fit: cover; display: block; transition: transform 0.3s ease; }
        .service-image-wrapper:hover img { transform: scale(1.05); }
        .service-content h3 { font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
        .service-content p { color: #666; font-size: 1.1rem; line-height: 1.8; margin-bottom: 25px; }
        .service-content ul { list-style: none; padding: 0; }
        .service-content ul li { color: #666; font-size: 1rem; line-height: 2; padding-left: 30px; position: relative; }
        .service-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; font-size: 1.2rem; }
        
        .footer { background: #000; color: white; padding: 60px 20px 30px; }
        .footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer-section h3 { color: var(--primary); margin-bottom: 20px; font-size: 1.2rem; font-weight: 600; }
        .footer-section p, .footer-section a { color: white; line-height: 1.8; display: block; margin-bottom: 10px; }
        .footer-section a:hover { color: var(--primary); }
        .footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
        
        @media (max-width: 968px) {
            .burger { display: flex; }
            .nav { display: none; }
            .service-item { grid-template-columns: 1fr; gap: 40px; }
            .service-item.reverse { direction: ltr; }
        }
        
        @media (max-width: 768px) {
            .header-inner { padding: 0 20px; }
            .hero h1 { font-size: 2.2rem; }
            .hero .subtitle { font-size: 1.2rem; }
            .section-header h2 { font-size: 2rem; }
        }
        
        @media (max-width: 640px) {
            .hero h1 { font-size: 1.8rem; }
            .hero .subtitle { font-size: 1.1rem; }
            .hero .sub-subtitle { font-size: 0.95rem; }
            .section-header h2 { font-size: 1.6rem; }
            .service-card h3 { font-size: 1.3rem; }
            .btn-hero { padding: 14px 30px; font-size: 0.95rem; }
            .cta-section h2 { font-size: 1.8rem; }
            .cta-section p { font-size: 1.1rem; }
        }
        
        @media (max-width: 480px) {
            .logo { font-size: 1.5rem; }
            .hero h1 { font-size: 1.5rem; }
            .hero .subtitle { font-size: 1rem; }
            .zones-grid, .services-grid, .testimonials-grid { gap: 20px; }
            .zone-card, .service-card, .testimonial-card { padding: 20px; }
        }
            .nav { display: none; }
            .burger { display: flex; }
            .hero h1 { font-size: 2.5rem; }
            .zones-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
        }
    
        .btn-email-cta { display: inline-block; background: var(--gold); color: var(--dark); padding: 12px 30px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; box-shadow: 0 4px 15px rgba(197,166,99,0.3); text-decoration: none; }
        .btn-email-cta:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
        
        .prochaines-dates { padding: 80px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); }
        .prochaines-dates h2 { text-align: center; font-size: 2.5rem; color: var(--white); margin-bottom: 40px; }
        .date-card { background: var(--white); border-radius: 16px; padding: 40px; max-width: 700px; margin: 0 auto; box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
        .date-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 15px; }
        .date-jour { font-size: 1.3rem; font-weight: 700; color: var(--gold); }
        .date-lieu { font-size: 1.1rem; font-weight: 600; color: var(--dark); }
        .date-card h3 { font-size: 1.8rem; margin-bottom: 15px; color: var(--dark); }
        .date-card p { font-size: 1.1rem; color: #666; margin-bottom: 25px; line-height: 1.6; }

    