/* ═══════════════ FOOTER ═══════════════ */
footer {
    background: linear-gradient(135deg, var(--black), #0d1b2e);
    color: rgba(255, 255, 255, .75);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 48px 48px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.ft-brand {}

.ft-nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
}

.ft-logo-img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.ft-desc {
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.ft-socials {
    display: flex;
    gap: 9px;
}

.ft-soc {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: background .18s, transform .18s;
}

.ft-soc:hover {
    background: rgba(255, 255, 255, .14);
    transform: translateY(-2px);
}

.ft-col h5 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
}

.ft-col ul {
    list-style: none;
    display: grid;
    gap: 9px;
}

.ft-col ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, .6);
    font-size: 13.5px;
    transition: color .18s;
}

.ft-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .4);
}