.elementor-19 .elementor-element.elementor-element-411f9b5{--display:flex;}/* Start custom CSS for html, class: .elementor-element-64e9937 *//* --- VARIABLES GLOBALES (Ajoutées pour que le design fonctionne) --- */
        :root {
            --text-light: #ffffff;
            --text-muted: #a0a0a0;
            --gradient-gold: linear-gradient(to right, #b96f5b, #f4d1c6);
            --rose-gold-light: #f4d1c6;
            --rose-gold-dark: #b96f5b;
            --bg-dark: #000000;
        }

        /* --- RESET DE BASE --- */
        body {
            margin: 0;
            padding: 0;
            background-color: #111; /* Fond pour voir le contraste du footer */
            overflow-x: hidden;
        }

        /* --- CONTENEUR PRINCIPAL (Ajouté pour centrer le contenu) --- */
        .ay-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%; /* Padding relatif pour s'adapter aux écrans */
            box-sizing: border-box;
        }

        /* --- FOOTER STYLING --- */
        .ay-footer {
            background-color: #050505; 
            color: var(--text-light);
            position: relative;
            padding-top: 60px;
            font-family: 'Montserrat', sans-serif;
            width: 100%; /* S'assure qu'il prend toute la largeur */
            display: block;
        }

        /* Ligne dorée en haut du footer */
        .footer-top-border {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-gold);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding-bottom: 50px;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            height: 60px;
            width: auto;
            margin-bottom: 20px;
            align-self: flex-start;
        }

        .footer-title {
            color: var(--text-light);
            font-size: 18px;
            font-weight: 600;
            margin-top: 0;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        /* Petit soulignement pour les titres */
        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 30px;
            height: 2px;
            background: var(--gradient-gold);
        }

        .footer-desc {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* Liens Rapides */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--rose-gold-light);
            transform: translateX(5px);
        }

        /* Info Contact */
        .footer-contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-contact-info li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-contact-info svg {
            color: var(--rose-gold-light);
            flex-shrink: 0;
            margin-top: 3px;
        }

        .footer-contact-info a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact-info a:hover {
            color: var(--rose-gold-light);
        }

        /* Lien Partenaire */
        .footer-partner-link {
            color: var(--bg-dark);
            background: var(--gradient-gold);
            padding: 10px 15px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            border-radius: 3px;
            text-transform: uppercase;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: inline-block;
            width: fit-content;
        }

        .footer-partner-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(185, 111, 91, 0.2);
        }

        /* Réseaux Sociaux */
        .footer-socials {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(244, 209, 198, 0.3);
            border-radius: 50%;
            color: var(--text-light);
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--rose-gold-dark);
            border-color: var(--rose-gold-dark);
            transform: translateY(-3px);
            color: var(--bg-dark); /* Pour que l'icône ressorte mieux au survol */
        }

        /* Barre Copyright */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 20px 0;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.4);
            font-size: 12px;
            margin: 0;
            letter-spacing: 0.5px;
        }

        /* --- RESPONSIVE DESIGN FOR FOOTER --- */
        @media (max-width: 991px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 50px 30px;
            }
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .footer-logo {
                align-self: center;
            }

            .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-contact-info li {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 10px;
            }

            .footer-contact-info svg {
                margin-top: 0;
            }

            .footer-socials {
                justify-content: center;
            }

            .footer-partner-link {
                margin: 0 auto;
            }
        }/* End custom CSS */