/* --- Footer Styles --- */

.site-footer {
    background-color: #0b1120;
    /* Deep dark blue/black */
    color: #a0aec0;
    font-size: 13px;
    padding-top: 60px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer About Col */
.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    /* filter: brightness(0) invert(1); */
    opacity: 0.9;
}

.footer-about p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 12px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #fff;
}

.footer-socials a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-col h5 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aec0;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-links a::before {
    content: '\f105';
    /* FontAwesome Angle Right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    opacity: 0.5;
}

/* Footer Contact */
.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 4px;
}

.footer-contact span {
    color: #cbd5e0;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    background: #060912;
    padding: 20px 0;
    font-size: 12px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    opacity: 0.7;
}

.footer-powered a {
    color: var(--secondary);
    font-weight: 600;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col h5::after {
        left: 0;
        transform: none;
    }

    .footer-col {
        text-align: left;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .footer-contact li {
        justify-content: flex-start;
    }

    .footer-links a {
        justify-content: flex-start;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        text-align: left;
    }
}