/*================ FOOTER ================*/
.site-footer {
    background: linear-gradient(180deg, #0e1524 0%, #0b0f19 100%);
    color: rgba(255,255,255,.75);
    padding: 70px 0 0;
    position: relative;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo img {
    height: 52px;
    filter: brightness(1.1);
}

.footer-social {
    display: flex;
    gap: 14px;
    align-items: center;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.8);
    font-size: 15px;
    transition: all .3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #0b0f19;
    transform: translateY(-3px);
}

.footer-columns {
    margin-bottom: 50px;
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
    letter-spacing: .3px;
}

.footer-col-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2.5px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    font-size: 14px;
    transition: color .25s ease, padding-left .25s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--gold-bright);
    padding-left: 4px;
}

.footer-sub-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 22px 0 12px;
    position: relative;
    display: inline-block;
}

.footer-sub-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
}

.footer-bottom a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .25s ease;
}

.footer-bottom a:hover {
    color: var(--gold);
}

.footer-bottom .sep {
    margin: 0 8px;
    opacity: .4;
}

@media (max-width: 991px) {
    .footer-columns .col-lg-3 {
        margin-bottom: 36px;
    }
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}