/* Footer */
.footer {
background: var(--text-primary);
  color: white;
  padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 11rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
/* Section identité (cards premium) - 5 cards sur une ligne */
.about-identity-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (max-width: 900px) {
    .about-identity-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
}

@media (max-width: 600px) {
    .about-identity-cards {
        grid-template-columns: 1fr;
    }
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #d1d5db;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}

.footer-about .footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-address {
    margin-top: 0.75rem;
    font-weight: 500;
}

.footer-about-line {
    margin-top: 0.75rem;
}


.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-bottom-centered {
    text-align: center;
    justify-content: center;
}

.footer-copyright {
    color: #d1d5db;
}

.footer-legal {
    display: none;
}

.footer-legal a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}

.footer-infos-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.footer-infos-list li {
    margin-bottom: 0.5rem;
}

.footer-nav .footer-links {
    padding: 0;
}

.footer-map-section .footer-map {
    margin-top: 0.75rem;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #374151;
}

.footer-map-section .footer-map iframe {
    width: 100%;
    height: 180px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer {
        padding: 1rem 0 1rem;
    }
}