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

.footer {
    background: linear-gradient(135deg, #1D3057 0%, #253650 100%);
    color: #FFFFFF;
    padding-block: 60px 20px;
    margin-top: 80px;
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 60px;
    }
}

/* Left Column */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: inline-flex;
    width: fit-content;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 220ms ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-logo img {
    display: block;
    width: 115px;
    height: 37px;
}

.footer-address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0;
    font-family: 'InterTight';
}

.footer-address p {
    margin: 0;
}

/* Social Links */
.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    text-decoration: none;
    transition: background 220ms ease, transform 220ms ease;
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-socials a svg {
    width: 18px;
    height: 18px;
}

/* Center & Right Columns */
.footer-center,
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-title {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
    font-family: Kodchasan;
}

/* Links List */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Gotham', Arial, sans-serif;

}

.footer-links li {
    margin: 0;
    font-family: 'Gotham', Arial, sans-serif;
    font-size: 16px;

}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 220ms ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

/* Contact Links */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 220ms ease;
    font-family: 'Gotham', Arial, sans-serif;
    font-size: 14px;

}

.footer-link:hover {
    color: #FFFFFF;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 16px;
    padding-top: 40px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-copyright {
    margin: 0;
    font-family: InterTight;
    font-size: 16px;
}

.footer-legal {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 220ms ease;
}

.footer-legal:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .footer {
        padding-block: 40px 20px;
    }

    .footer .container {
        gap: 40px;
    }

    .footer-content {
        gap: 32px;
    }

    .footer-left {
        gap: 16px;
    }
}