.site-footer {
    background: #ffffff;
    padding: 80px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    text-align: center;
    position: relative;
}

/* Ligne signature bleue */

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Structure */

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Logo */

.footer-logo img {
    max-height: 48px;
    width: auto;
    transition: 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

/* Contact */

.footer-contact {
    font-size: 16px;
    color: #555;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.footer-contact a {
    color: #111;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

/* Soulignement animé */

.footer-contact a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-contact a:hover::after {
    width: 100%;
}

/* Séparateur */

.separator {
    color: #ccc;
}

/* Copyright */

.footer-bottom {
    font-size: 13px;
    color: #999;
    letter-spacing: 0.5px;
}