/* ============ FOOTER ============ */
footer{background:var(--blue-deep);color:#B9C4E6;padding:4.5rem 0 0}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:3rem;padding-bottom:3.5rem;border-bottom:1px solid rgba(255,255,255,.1)}
.foot-brand .brand{color:#fff}
.foot-brand p{margin:1.2rem 0 1.5rem;font-size:.92rem;max-width:300px;color:#A3AFD1}
.foot-social{display:flex;gap:.7rem}
.foot-social a{width:38px;height:38px;border-radius:10px;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;transition:background .25s ease,transform .25s ease}
.foot-social a:hover{background:var(--orange);transform:translateY(-3px)}
.foot-social .icon{width:17px;height:17px;color:#fff}
.foot-col h4{color:#fff;font-size:.95rem;margin-bottom:1.3rem}
.foot-col ul{display:flex;flex-direction:column;gap:.85rem}
.foot-col a{font-size:.9rem;color:#A3AFD1;transition:color .2s ease}
.foot-col a:hover{color:var(--orange)}
.foot-contact li{display:flex;gap:.7rem;font-size:.88rem;color:#A3AFD1;align-items:flex-start}
.foot-contact .icon{width:17px;height:17px;color:var(--orange);flex-shrink:0;margin-top:.15rem}
.foot-bottom{display:flex;justify-content:space-between;align-items:center;padding:1.6rem 0;font-size:.82rem;color:#8894BB;flex-wrap:wrap;gap:.8rem}
.foot-bottom a{color:#8894BB}
.foot-bottom a:hover{color:#fff}
@media (max-width:900px){.foot-grid{grid-template-columns:1fr 1fr;gap:2.5rem}}
@media (max-width:560px){.foot-grid{grid-template-columns:1fr}}

/* Dynamic social links */
.foot-social .footer-social-link {
    width:38px;
    height:38px;
    border-radius:10px;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .25s ease,transform .25s ease;
    color:#fff;
    text-decoration:none;
}
.foot-social .footer-social-link:hover {
    background:var(--orange);
    transform:translateY(-3px);
}
.foot-social .footer-social-link i {
    font-size:1.2rem;
}
