#footer-bottom {
    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: #EEEEEE;
    padding: 60px 20px;
    border-bottom: 1px solid #333;
    margin-bottom: 40px;
    text-align: center; /* Pour centrer ton CTA */
}

.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: #323232;
    margin-bottom: 30px;
}

.btn-contact-footer,
#footer-bottom .menu-item a[data-drupal-link-system-path="contact"] {
    display: inline-block;
    padding: 18px 40px;
    background-color: #E06106; /* Ta nouvelle couleur orange */
    color: #fff !important;    /* Texte en blanc pour la lisibilité sur l'orange */
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #E06106; /* Bordure assortie */
}

.btn-contact-footer:hover,
#footer-bottom .menu-item a[data-drupal-link-system-path="contact"]:hover {
    background-color: transparent;
    color: #E06106 !important; /* Le texte devient orange au survol */
    border-color: #E06106;      /* La bordure reste orange */
    transform: translateY(-3px);
}

/* Lien SEO Accueil - Adapté à la structure Drupal .menu */
.footer-home-link a,
#footer-bottom .menu a {
    color: #888;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-home-link a:hover,
#footer-bottom .menu a:hover {
    color: #E06106;
}

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

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

.social-links a {
    font-size: 25px !important;
    color: #fff;
    transition: transform 0.3s, color 0.3s;
}

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

/* Copyright Section - Généralement placé dans la région footer-bottom */
.copyright-section,
#footer-bottom .region-footer-bottom-first {
    font-size: 0.75rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}