/* footer-clean.css - Styles dédiés au footer professionnel */

.main-footer {
    background: var(--primary-color);
    color: white;
    margin-top: 60px;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1rem;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 24px 0 24px;
}
.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    margin-bottom: 32px;
}
.footer-column {
    flex: 1 1 220px;
    min-width: 300px;
    margin-bottom: 24px;
}
.footer-brand {
    flex: 1.5 1 320px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer-logo img {
    width: 70px;
    height: auto;
    border-radius: 8px;
}
.footer-brand-info h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: #fff;
}
.footer-tagline {
    font-size: 1rem;
    color: #e74c3c;
    margin-bottom: 6px;
}
.footer-description {
    font-size: 0.95rem;
    color: #ccc;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #e74c3c;
}
.footer-plan {
    margin-top: 18px;
}
.plan-preview {
    display: flex;
    align-items: center;
    gap: 12px;
}
.plan-preview img {
    width: 60px;
    border-radius: 6px;
}
.download-btn {
    background: #c0392b;
    color: #fff;
    border-radius: 5px;
    padding: 8px 14px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.download-btn:hover {
    background: #a0301f;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}
.footer-social-newsletter {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    margin-bottom: 32px;
}
.footer-social {
    flex: 1 1 220px;
}
.social-links {
    display: flex;
    gap: 16px;
}
.social-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    transition: color 0.2s;
}
.social-link.facebook:hover {
    color: #ffffff;
}
.social-link.instagram:hover {
    color: #ffffff;
}
.social-link.google:hover {
    color: #ffffff;
}
.footer-newsletter {
    flex: 1 1 220px;
}
.newsletter-form {
    margin-top: 10px;
}
.newsletter-input-group {
    display: flex;
    gap: 8px;
}
.newsletter-input-group input {
    flex: 1;
    padding: 8px;
    border-radius: 4px;
    border: none;
}
.newsletter-input-group button {
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-input-group button:hover {
    background: #c0392b;
}
.newsletter-consent {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    margin-top: 8px;
}
.footer-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 24px;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #333;
    color: #fff;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.95rem;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid #444;
    font-size: 0.95rem;
}
.footer-copyright {
    color: #ccc;
}
.footer-credits a {
    color: #e74c3c;
    text-decoration: none;
}
.footer-payment {
    display: flex;
    align-items: center;
    gap: 12px;
}
.payment-icons i {
    font-size: 1.3rem;
    margin-right: 8px;
    color: #fff;
}
@media (max-width: 900px) {
    .footer-main, .footer-social-newsletter {
        flex-direction: column;
        gap: 18px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
