/* ---- Footer ---- */
.site-footer {
    background: #ffffff;
    color: #555555;
    padding: 80px 0 0;
    border-top: 1px solid #eaeaea;
}

.site-footer .brand-name {
    color: #0b1736;
}

.site-footer .brand-sub {
    color: #888888;
}

.footer-about {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 360px;
}

.footer-heading {
    color: #0b1736;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    padding: 0.35rem 0;
}

.footer-links a {
    color: #666666;
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.82rem;
}

.footer-contact li i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4f6f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555555;
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid #e1e4e8;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #eaeaea;
    margin-top: 4rem;
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.75rem;
    color: #888888;
}

/* Responsive Overrides for Footer */
@media (max-width: 991.98px) {
    .footer-heading {
        font-size: 0.82rem;
        margin-bottom: 1rem;
    }

    .footer-links a {
        font-size: 0.7rem;
    }

    .footer-contact li {
        font-size: 0.7rem;
        gap: 0.5rem;
        padding: 0.4rem 0;
    }
}