.footer {
    background: var(--dark);
    color: var(--text);
    padding: 80px 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    position: relative;
}

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

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px; 
    margin-bottom: 60px; 
}

.footer-col { 
    text-align: left; 
}

.footer-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 2rem; 
    color: #fff; 
    margin-bottom: 20px; 
    letter-spacing: 2px; 
    position: relative; 
}

.footer-title::after { 
    content: ''; 
    width: 60px; 
    height: 2px; 
    background: var(--accent); 
    display: block; 
    margin-top: 10px; 
}

.footer-text { 
    font-size: 1rem; 
    line-height: 1.6; 
    margin-bottom: 20px; 
}

.footer-siret { 
    font-size: 0.9rem; 
    color: #888; 
}

.visitor-counter p { 
    font-size: 1rem; 
    color: var(--text); 
}

.footer-btn { 
    display: inline-block; 
    padding: 10px 20px; 
    background: transparent; 
    border: 1px solid var(--primary); 
    color: var(--primary); 
    text-decoration: none; 
    transition: all 0.3s; 
    font-size: 0.9rem; 
}

.footer-btn:hover { 
    background: var(--primary); 
    color: #fff; 
}

.footer-list { 
    list-style: none; 
}

.footer-list li { 
    margin-bottom: 10px; 
}

.footer-link { 
    color: var(--text); 
    text-decoration: none; 
    transition: color 0.3s; 
}

.footer-link:hover { 
    color: var(--accent); 
}

.subscription-form .form-group { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 20px; 
}

.subscription-form input { 
    padding: 10px; 
    background: #111; 
    border: 1px solid #333; 
    color: var(--text); 
    flex: 1; 
    font-family: 'Cormorant Garamond', serif; 
}

.subscription-form button { 
    padding: 10px 20px; 
    background: var(--primary); 
    border: none; 
    color: #fff; 
    cursor: pointer; 
    transition: background 0.3s; 
}

.subscription-form button:hover { 
    background: var(--accent); 
}

.recaptcha-container { 
    display: flex; 
    justify-content: center; 
}

.footer-copyright { 
    text-align: center; 
    color: #666; 
    font-size: 1rem; 
    margin-top: 40px; 
    border-top: 1px solid #222; 
    padding-top: 40px; 
}

#google_translate_element { 
    text-align: center; 
    margin-top: 20px; 
}

@media (max-width: 768px) {
    .footer-grid { 
        grid-template-columns: 1fr; 
    }
}