/* ===== FOOTER ===== */
.elmi-footer-brand img {
    display: block;
    height: 70px;
    width: auto;
    max-width: 100%;
    margin-bottom: 18px;
}
.elmi-footer-brand .elmi-footer-desc {
    color: rgba(255,255,255,0.7);
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}
.elmi-footer-title {
    color: var(--red);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 18px 0;
}
.elmi-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.elmi-footer-links li {
    margin-bottom: 4px;
    line-height: 1.3;
}
.elmi-footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.3;
    display: inline-block;
    padding: 2px 0;
    transition: color 0.2s, padding-left 0.2s;
}
.elmi-footer-links a:hover {
    color: var(--red);
    padding-left: 4px;
}
.elmi-footer-hours p,
.elmi-footer-contact p {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 14px 0;
}
.elmi-footer-hours p strong,
.elmi-footer-contact p strong {
    color: #ffffff;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}
.elmi-footer-contact a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
}
.elmi-footer-contact a:hover { color: var(--red); }

/* Barre du bas (copyright + liens légaux) */
.elmi-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
    font-size: 0.82rem;
}
.elmi-footer-bottom p { margin: 0; }
.elmi-footer-bottom ul {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}
.elmi-footer-bottom ul a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.elmi-footer-bottom ul a:hover { color: var(--red); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .elmi-footer-grid { grid-template-columns: 1fr; }
    .elmi-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 768px) {
    .elmi-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .elmi-footer-bottom ul { justify-content: center; flex-wrap: wrap; }
}
