.elementor-1058 .elementor-element.elementor-element-61f970a{--display:flex;}.elementor-1058 .elementor-element.elementor-element-61f970a:not(.elementor-motion-effects-element-type-background), .elementor-1058 .elementor-element.elementor-element-61f970a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#4ABB40;}.elementor-1058 .elementor-element.elementor-element-c3b3cf1{--display:flex;}.elementor-1058 .elementor-element.elementor-element-b84acd0{--display:flex;}.elementor-1058 .elementor-element.elementor-element-f4403a8{--display:flex;}.elementor-1058 .elementor-element.elementor-element-3d9c9f5{--display:flex;}.elementor-1058 .elementor-element.elementor-element-0f50975{--display:flex;}.elementor-1058 .elementor-element.elementor-element-0f50975:not(.elementor-motion-effects-element-type-background), .elementor-1058 .elementor-element.elementor-element-0f50975 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#3A3E49;}/* Start custom CSS for shortcode, class: .elementor-element-479decb *//* ========== FOOTER PREMIUM ========== */
.moctalia-footer-premium {
    --primary-color: #2c3e50;
    --secondary-color: #f39c12;
    --accent-color: #25D366;
    --text-light: #ecf0f1;
    --text-dark: #2c3e50;
    --bg-gradient: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    font-family: 'Segoe UI', system-ui, sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-premium-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    background: var(--bg-gradient);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.footer-premium-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 0 40px;
}

/* Colonnes */
.footer-premium-col {
    display: flex;
    flex-direction: column;
}

/* Logo */
.footer-logo-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.footer-logo-premium {
    max-width: 180px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}

.footer-logo-premium:hover {
    transform: scale(1.05);
}

.logo-badge {
    position: absolute;
    bottom: -10px;
    left: 0;
    background: var(--secondary-color);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Contact */
.contact-info-premium {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item:hover {
    color: var(--secondary-color);
}

.contact-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border-radius: 50%;
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    background: var(--secondary-color);
    color: var(--text-dark);
}

/* Titres */
.footer-premium-title {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 25px;
    position: relative;
}

.title-underline {
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

/* Liens */
.footer-premium-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-premium-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding-left: 15px;
}

.footer-premium-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s;
    color: var(--secondary-color);
}

.footer-premium-links a:hover {
    color: var(--text-light);
    padding-left: 20px;
}

.footer-premium-links a:hover::before {
    opacity: 1;
    left: -5px;
}

/* Formulaire WhatsApp */
.whatsapp-form-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    position: relative;
}

.whatsapp-form-premium input,
.whatsapp-form-premium textarea {
    width: 100%;
    padding: 12px 15px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.whatsapp-form-premium textarea {
    min-height: 100px;
    resize: vertical;
}

.whatsapp-form-premium input:focus,
.whatsapp-form-premium textarea:focus {
    outline: none;
    border-bottom-color: var(--secondary-color);
}

.whatsapp-form-premium label {
    position: absolute;
    left: 15px;
    top: 12px;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    transition: all 0.3s;
}

.whatsapp-form-premium input:focus + label,
.whatsapp-form-premium input:not(:placeholder-shown) + label,
.whatsapp-form-premium textarea:focus + label,
.whatsapp-form-premium textarea:not(:placeholder-shown) + label {
    transform: translateY(-20px);
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
}

.whatsapp-form-premium input:focus ~ .input-border,
.whatsapp-form-premium textarea:focus ~ .input-border {
    width: 100%;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.whatsapp-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.whatsapp-btn svg {
    transition: transform 0.3s;
}

.whatsapp-btn:hover svg {
    transform: rotate(45deg);
}

/* Réseaux sociaux */
.social-links-premium {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.social-link-premium {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.social-link-premium.fb {
    background: rgba(59, 89, 152, 0.1);
    border: 1px solid rgba(59, 89, 152, 0.3);
}

.social-link-premium.wa {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.social-link-premium:hover {
    transform: translateX(5px);
}

.social-link-premium.fb:hover {
    background: rgba(59, 89, 152, 0.2);
}

.social-link-premium.wa:hover {
    background: rgba(37, 211, 102, 0.2);
}

/* Badges de confiance */
.trust-badges-premium {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.trust-badge svg {
    color: var(--secondary-color);
}

.trust-badge span {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.3;
}

/* Séparateur */
.footer-premium-divider {
    height: 20px;
    position: relative;
    overflow: hidden;
}

.divider-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23f39c12' opacity='.25'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' fill='%23f39c12' opacity='.5'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23f39c12'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

/* Footer bas */
.footer-premium-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
    text-align: center;
    gap: 10px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.copyright strong {
    color: var(--text-light);
    font-weight: 600;
}

.legal-links-premium {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.legal-links-premium a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.legal-links-premium a:hover {
    color: var(--secondary-color);
}

.divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-premium-top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0 30px;
    }
    
    .footer-logo-wrapper {
        margin-bottom: 20px;
    }
    
    .footer-premium-title {
        margin-bottom: 20px;
    }
    
    .trust-badges-premium {
        justify-content: center;
    }
    
    .footer-premium-bottom {
        padding: 20px 0;
    }
}/* End custom CSS */