/* ================= REVAMPED GLOBAL FOOTER ================= */

.footer-section {
    background-color: #00293B;
    padding: 54px 0 0;
    color: #ffffff;
    font-family: "Outfit", sans-serif;
}

.footer-section .footer-logo img {
    width: 180px;
    height: auto;
}

.footer-section .footer-about p {
    max-width: 320px;
    color: #A6A6A6;
    font-size: 14px;
    line-height: 1.7;
    margin: 20px 0 22px;
}

.footer-section .social-icons {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-section .social-icons a {
    color: #A6A6A6;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section .social-icons a:hover {
    color: #05aeea;
}

.footer-section .footer-links h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 22px;
}

.footer-section .footer-links ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-section .footer-links ul li {
    margin-bottom: 12px;
}

.footer-section .footer-links ul li a {
    color: #A6A6A6;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section .footer-links ul li a:hover {
    color: #05aeea;
}

.footer-section .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 48px;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-section .footer-bottom a,
.footer-section .footer-bottom span,
.footer-section .footer-bottom p {
    color: #A6A6A6;
    font-size: 14px;
    margin-bottom: 0;
    text-decoration: none;
}

.footer-section .footer-bottom a:hover {
    color: #05aeea;
}

.footer-section .footer-bottom span {
    padding: 0 22px;
}

@media (max-width: 991px) {
    .footer-section .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-section {
        padding-top: 46px;
    }

    .footer-section .footer-bottom span {
        padding: 0 12px;
    }
}
