/* ==================== FOOTER ==================== */
.footer {
    background: #0F172A;
    color: #FFFFFF !important;
    padding: 4rem 0 0;
    margin-top: 0;
}

.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand img {
    display: block ;
  width: auto;
  max-height: 75px !important;
  object-fit: contain;
}

.footer-brand h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer h5 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
    color: white !important;
}

.footer-links a:hover {
    color: #60A5FA !important;
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #60A5FA;
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.1rem;
        text-decoration: none;

}

.footer-social a:hover {
    background: #FFFFFF;
    color: #1D4ED8;
    transform: translateY(-3px);
    text-decoration: none;
}

.footer-bottom {
    padding: 1.75rem 0;
    text-align: center;
    color: #9CA3AF;
    font-size: 0.9rem;
    background-color: #020617;
}

.footer-bottom p {
    margin: 0 0 0.75rem 0;
    color: #9CA3AF;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.footer-legal a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #60A5FA;
}

.footer-legal-separator {
    color: #6B7280;
    margin: 0 0.25rem;
}

@media (max-width: 767px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-top {
        padding-bottom: 2rem;
    }

    .footer-brand,
    .footer > .container > .row > div {
        margin-bottom: 2rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-legal-separator {
        display: none;
    }
}
