/* Site footer, including the logo and HIS accreditation badge.
   Load order: 4th of 5 — base, header, content, footer, responsive.
*/

/* Footer */
footer {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-logo-img {
    height: 110px;
    width: 110px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    padding: 8px 12px;
    border-radius: 10px;
}

.footer-badge img {
    height: 55px;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}
