/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
    background: linear-gradient(135deg, #001f4d 0%, #00377B 100%);
    color: #e5eef8;
    padding: 4.5rem 0 2rem;
    margin-top: 5rem;
    position: relative;
    z-index: 1;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-heading {
    font-family: var(--font-title, "Merriweather", serif);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #fff;
    position: relative;
    padding-bottom: .65rem;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 4px;
    background: linear-gradient(90deg, #FF6C00, #FF9240);
    border-radius: 2px;
}
.footer-text {
    color: #c8ddef;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-size: .9rem;
}
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li,
.footer-contact li {
    margin-bottom: .75rem;
}
.footer-links a {
    color: #61B9F0;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    font-size: .9rem;
    text-decoration: none;
}
.footer-links a:hover {
    color: #fff;
    padding-left: .5rem;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #c8ddef;
    font-size: .9rem;
}
.footer-contact i {
    color: #FF6C00;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.footer-social {
    display: flex;
    gap: .75rem;
    margin-top: 1.25rem;
}
.social-link {
    width: 44px;
    height: 44px;
    background: rgba(97, 185, 240, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #fff;
    font-size: 1.1rem;
    transition: all .3s;
    text-decoration: none;
}
.social-link:hover {
    background: #FF6C00;
    transform: translateY(-4px);
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .10);
    padding-top: 1.75rem;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.copyright {
    color: #8aaecb;
    margin: 0;
    font-size: .88rem;
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: .875rem;
}
.footer-bottom-links a {
    color: #61B9F0;
    transition: color .3s;
    font-size: .88rem;
    text-decoration: none;
}
.footer-bottom-links a:hover {
    color: #fff;
}
.separator {
    color: rgba(255, 255, 255, .25);
}

/* ══════════════════════════════════════
   FOOTER RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
        margin-top: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}