        /* =============================================
           TEMPLATE GENERAL - Variables et Base
           ============================================= */
        :root {
            --primary-purple: #594695;
            --primary-yellow: #fdcb04;
            --dark-purple: #4a3576;
            --light-purple: #7b6ba8;
            --warm-orange: #ff6b35;
            --dark-gray: #2c3e50;
            --light-gray: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        .font-display {
            font-family: 'Playfair Display', serif;
        }
        
        html {
            scroll-behavior: smooth;
        }

        p {
            text-align: justify;
        }

        .image-carree {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 10px;
        }

        /* =============================================
           TEMPLATE GENERAL - Navigation
           ============================================= */
        .navbar {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 5px 0;
        }
        
        .navbar-brand img {
            height: 120px;
            width: auto;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-gray) !important;
            font-size: 1.2em;
            font-weight: 500;
            padding: 10px 20px !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-purple) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 50%;
            background: var(--primary-yellow);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .bouton {
            background: var(--primary-purple);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-left: 20px;
        }
        
        .bouton:hover {
            background: var(--primary-yellow);
            color: var(--primary-purple);
            transform: translateY(-2px);
        }
        
        .bouton i {
            margin-right: 8px;
        }
        
        /* =============================================
           TEMPLATE GENERAL - Footer
           ============================================= */
        .footer {
            background: var(--primary-purple);
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-nav {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .footer-nav a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-nav a:hover {
            color: var(--primary-yellow);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.8);
        }
        
        /* =============================================
           TEMPLATE GENERAL - Utilitaires
           ============================================= */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--dark-purple);
            margin-bottom: 20px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: #666;
            margin: 0 auto;
        }
        
        /* =============================================
           HOMEPAGE SPECIFIC - Hero Section
           ============================================= */
        .hero {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
            color: white;
            padding: 50px 0;
            position: relative;
            overflow: hidden;
            margin-bottom: 10px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
            background-size: cover;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero .lead {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }
        
        .btn-hero {
            background: var(--primary-yellow);
            color: var(--dark-gray);
            border: none;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 10px;
        }
        
        .btn-hero:hover {
            background: #e6b800;
            color: var(--dark-gray);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .btn-outline-hero {
            color: white;
            border: 2px solid white;
            background: transparent;
            padding: 13px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-outline-hero:hover {
            background: white;
            color: var(--primary-purple);
        }

        /* Pour afficher 5 colonnes sur grand écran */
        @media (min-width: 1400px) {
            .col-xxl-custom {
                flex: 0 0 auto;
                width: 20%;
            }
        }
        
        /* =============================================
           HOMEPAGE SPECIFIC - Slideshow
           ============================================= */
        .slideshow-container {
#            background: rgba(255,255,255,0.1);
#            padding: 30px;
#            border-radius: 20px;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        
        .slide {
            display: none;
            text-align: center;
            animation: fadeIn 0.5s ease-in-out;
        }
        
        .slide.active {
            display: block;
        }
        
        .slide-icon {
            font-size: 6rem;
            color: var(--primary-yellow);
            margin-bottom: 20px;
        }
        
        .slide h3 {
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .slide p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* =============================================
           HOMEPAGE SPECIFIC - Services Section
           ============================================= */
        .services {
            padding: 50px 0 100px 0;
            background: var(--light-gray);
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 5px solid var(--primary-purple);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-yellow), var(--warm-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        
        .service-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .service-card h4 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 15px;
        }
        
        .service-card p {
            color: #666;
            line-height: 1.6;
        }

        .service-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .service-card .bouton {
            margin-top: auto;
            align-self: flex-start; /* ou center ou stretch selon tes préférences */
        }

        /* =============================================
           HOMEPAGE SPECIFIC - Why Choose Us Section
           ============================================= */
        .why-choose {
            padding: 100px 0;
            background: white;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            background: var(--light-gray);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-purple);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 25px;
            flex-shrink: 0;
        }
        
        .feature-icon i {
            color: white;
            font-size: 1.5rem;
        }
        
        .feature-content h5 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 8px;
        }
        
        .feature-content p {
            color: #666;
            margin: 0;
        }
        
        .zone-card {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 50px;
            border-radius: 20px;
            text-align: center;
        }
        
        .zone-icon {
            font-size: 4rem;
            color: var(--primary-yellow);
            margin-bottom: 20px;
        }
        
        .zone-card h3 {
            color: var(--dark-gray);
            margin-bottom: 20px;
        }
        
        .zone-card p {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        
        .zone-details {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .zone-details strong {
            color: var(--primary-purple);
        }
        
        .zone-details small {
            color: #666;
        }
        
        /* =============================================
           HOMEPAGE SPECIFIC - Contact Section
           ============================================= */
        .contact {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
            color: white;
        }
        
        .contact-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .contact-card h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .contact-card p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 80px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .contact-item {
            text-align: center;
        }
        
        .contact-item i {
            font-size: 2rem;
            color: var(--primary-yellow);
            margin-bottom: 10px;
        }
        
        .contact-item h5 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .contact-item p {
            margin: 0;
            opacity: 0.9;
        }
        
        /* =============================================
           TEMPLATE GENERAL - Responsive
           ============================================= */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .lead {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 20px;
            }
            
            .footer-nav {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .bouton {
                margin-left: 0;
                margin-top: 10px;
            }
        }
