/* Style Global du Footer */
.footer-premium {
    background-color: #111; /* Fond sombre élégant */
    color: #fff;
    padding: 0 0 40px 0;
    margin-top: 50px;
}

/* Section CTA (L'Appel à l'Action) */
.footer-cta {
    background-color: #1a1a1a;
    padding: 60px 20px;
    border-bottom: 1px solid #333;
    margin-bottom: 40px;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
}

/* LE BOUTON DE CONTACT (Incitateur) */
.btn-contact-footer {
    display: inline-block;
    padding: 18px 40px;
    background-color: #fff; /* Contraste maximum */
    color: #000 !important;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.btn-contact-footer:hover {
    background-color: transparent;
    color: #fff !important;
    transform: translateY(-3px);
}

/* Lien SEO Accueil */
.footer-home-link {
    margin-bottom: 25px;
}

.footer-home-link a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-home-link a:hover {
    color: #fff;
}

/* Icônes Sociales */
.social-links {
    margin-bottom: 30px;
    padding: 0;
}

.social-links li {
    display: inline-block;
    margin: 0 15px;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s, color 0.3s;
}

.social-links a:hover {
    color: #d4af37; /* Teinte dorée au survol */
    transform: scale(1.2);
}

.copyright-section {
    font-size: 0.75rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}