/* ===================================================
   FOOTER — Fond vert Cédis (même que le menu nav)
   =================================================== */

#cf-footer-wrapper {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ---- BANDE PRINCIPALE VERTE ---- */
.cf-main-band {
    background: linear-gradient(180deg, #4a9a06 0%, #3d8205 100%);
    padding: 50px 0 40px;
}

/* Logo + tagline */
.cf-footer-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 32px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.cf-footer-logo img {
    height: 52px;
    filter: none;
    opacity: .95;
}

.cf-top-tagline {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* ---- GRILLE 3 COLONNES ---- */
.cf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 36px;
}

.cf-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,.25);
    display: inline-block;
}

.cf-col a {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    text-decoration: none !important;
    transition: opacity .2s, padding-left .2s;
}

.cf-col a:hover {
    padding-left: 5px;
}

.cf-col p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.cf-col p a {
    display: inline !important;
    margin-bottom: 0;
}

/* Bouton Nous contacter — outline blanc, pas de bg changeant */
.cf-contact-btn,
a.cf-contact-btn {
    display: inline-block !important;
    margin-top: 16px;
    padding: 10px 28px;
    background: transparent !important;
    border: 2px solid rgba(255,255,255,.5) !important;
    border-radius: 24px;
    font-size: 12px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: background .25s, border-color .25s;
    cursor: pointer;
}

/* ---- RÉSEAUX SOCIAUX — en bas de la bande verte ---- */
.cf-footer-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.15);
}

.cf-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    transition: background .25s;
}

.cf-footer-socials a:hover {
    background: rgba(255,255,255,.25);
}

.cf-footer-socials .cf-social-bluesky {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.cf-footer-socials .cf-fa {
    font-size: 16px !important;
}

/* ---- CERTIFICATIONS — fond blanc ---- */
.cf-certifs-band {
    background: #fff;
    padding: 36px 0;
}

.cf-certifs-inner {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
}

.cf-certif-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.cf-certif-item img {
    width: auto;
    height: 110px;
    max-height: 110px;
    object-fit: contain;
    margin-bottom: 10px;
    opacity: .9;
    transition: opacity .25s;
}

.cf-certif-item:hover img { opacity: 1; }

.cf-certif-item p {
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

/* ---- BAS DE PAGE — vert foncé ---- */
.cf-bottom-band {
    background: #2d7a04;
    padding: 14px 0;
}

.cf-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cf-bottom-inner p {
    font-size: 12px;
    margin: 0;
}

.cf-bottom-links {
    display: flex;
    gap: 20px;
}

.cf-bottom-links a {
    font-size: 12px;
    text-decoration: none !important;
    transition: opacity .2s;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .cf-footer-header {
        flex-direction: column;
        text-align: center;
    }

    .cf-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .cf-col h4 { display: block; }
    .cf-col a:hover { padding-left: 0; }

    .cf-certifs-inner {
        flex-direction: column;
        gap: 24px;
    }

    .cf-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cf-bottom-links { justify-content: center; }
}
