/* =========================
   FOOTER
========================= */

.footer {
    position: relative;
    overflow: hidden;
    padding: 90px 0 40px;
    background:
        linear-gradient(
            135deg,
            #0d1b1a 0%,
            #102f2b 45%,
            #149378 100%
        );
    color: var(--white-color);
}

.footer::before,
.footer::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.footer::before {
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.04);
}

.footer::after {
    bottom: -140px;
    left: -140px;
    width: 360px;
    height: 360px;
    background: rgba(52, 198, 0, 0.08);
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.footer-badge i,
.footer-logo span {
    color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 24px;
    color: var(--white-color);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-title {
    margin-bottom: 26px;
    color: var(--white-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-text {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
}

.footer-links,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact-list li {
    margin-bottom: 14px;
}

.footer-links a,
.footer-contact-list a,
.footer-policy-link {
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact-list a:hover,
.footer-policy-link:hover {
    color: var(--white-color);
}

.footer-divider {
    margin: 60px 0 30px;
    border-color: rgba(255, 255, 255, 0.12);
    opacity: 1;
}

.footer-bottom-text {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

.footer-policy-link {
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 991.98px) {

    .footer {
        padding: 70px 0 35px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 20px;
        flex-wrap: wrap;
    }

}

@media (max-width: 576px) {

    .footer {
        padding: 60px 0 30px;
    }

    .footer-bottom-text {
        margin-bottom: 18px;
    }

}