.elementor-102 .elementor-element.elementor-element-af6b2f7:not(.elementor-motion-effects-element-type-background), .elementor-102 .elementor-element.elementor-element-af6b2f7 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #667EEA 0%, #764BA2 100%);}.elementor-102 .elementor-element.elementor-element-af6b2f7{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-102 .elementor-element.elementor-element-af6b2f7 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}/* Start custom CSS for html, class: .elementor-element-e26d24c *//* --- Style du Footer --- */
.site-footer {
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.footer-description {
    max-width: 450px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-top: 0;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a, .footer-column p {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 16px;
    margin: 0;
}

.footer-column a:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #00C853;
    border-radius: 50%;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1) translateY(-2px);
}

.social-icons img {
    width: 22px;
    height: 22px;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* 1 colonne sur mobile */
        text-align: center;
    }
    
    .footer-column {
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .social-icons {
        margin-top: 20px;
    }
}
/* --- Style du Bouton WhatsApp Flottant --- */
.whatsapp-float {
    position: fixed; /* Le bouton reste fixe à l'écran */
    width: 60px;
    height: 60px;
    bottom: 30px; /* Distance du bas */
    right: 30px; /* Distance de la droite */
    background-color: #25D366; /* Couleur officielle de WhatsApp */
    color: #FFF;
    border-radius: 50%; /* Forme circulaire */
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); /* Ombre portée */
    z-index: 1000; /* S'assure qu'il est au-dessus des autres éléments */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite; /* Animation pour attirer l'attention */
}

.whatsapp-float:hover {
    transform: scale(1.1); /* Grossit légèrement au survol */
    animation: none; /* Arrête l'animation au survol */
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* Keyframes pour l'animation de pulsation */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}/* End custom CSS */