/* Footer Styles */
footer {
    background-color: var(--deep-blue);
    color: white;
    margin-top: 3rem;
    border-top: 1px solid var(--divider);
}

.footer-menu {
    padding: 2rem 1rem;
    background-color: rgba(0, 0, 0, 0.1);
}

.footer-navigation {
    max-width: 1200px;
    margin: 0 auto;
}

.location-address {
    font-size: 14px;
    color: var(--secondary-text);
    line-height: 1.5;
}

footer {
    background-color: var(--background);
}

footer .footer__content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

footer .footer__logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 150px;
}

footer .footer__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

footer .footer__menu .footer-menu-item {
    color: var(--text-title);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition-duration: 0.3s;
    padding-left: 14px;
    line-height: 1;
}

footer .footer__menu .footer-menu-item:not(:last-of-type) {
    border-right: 1px solid var(--text-title);
    padding-right: 14px;
}

footer .footer__menu .footer-menu-item:hover {
    color: var(--deep-blue);
}

footer .footer__switch-lang {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

footer .footer__switch-lang li a {
    color: var(--text-title);
    text-decoration: none;
    transition-duration: 0.3s;
}

footer .footer__switch-lang li {
    border: 1px solid transparent;
    transition-property: 0.3s;
    border-radius: 4px;
    font-weight: 16px;
    font-weight: 400;
    padding: 4px;
    list-style: none;
}

footer .footer__switch-lang li:hover {
    border: 1px solid var(--light-sky);
}

footer .footer__switch-lang li:hover a {
    color: var(--sage);
}

footer .footer__switch-lang .current-lang {
    border: 1px solid var(--light-sky);
}

footer .footer__switch-lang .current-lang a {
    color: var(--deep-blue);
}

footer .footer-menu-list {
    display: flex;
    flex-direction: row;
    list-style: none;
}

footer .footer-menu-list a {
    color: var(--text-title);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 0 12px;
    position: relative;
    transition-duration: 0.3s;
}

footer .footer-menu-list li:hover a {
    color: var(--sage);
}

footer .footer-menu-list li:not(:last-of-type) a:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    display: inline-block;
    height: 100%;
    width: 1px;
    background-color: var(--text-title);
}

footer .footer__info {
    display: inline-grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 148px;
    font-size: 14px;
    color: var(--secondary-text);
    line-height: 1;
}

footer .footer__info .company-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .footer__info .social-icons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
}

footer .footer__info .social-icons img {
    height: 30px;
    width: auto;
}

footer .company-location {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

footer .company-location .location-title {
    font-weight: 700;
    color: var(--text-title);
    font-size: 18px;
}

@media (max-width: 768px) {
    .footer-menu-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-copyright {
        font-size: 18px;
        padding: 2rem 1rem;
    }

    footer .footer__content {
        padding: 20px;
    }

    footer .footer__info {
        display: block;
    }

    footer .footer__info .company-social {
        text-align: center;
        margin-bottom: 23px;
    }

    footer .footer__info .social-icons {
        justify-content: center;
    }

    footer .footer__menu {
        display: inline-grid;
        text-align: center;
    }

    footer .footer__menu .footer-menu-item:not(:last-of-type) {
        border-right: none;
    }

    .footer__menu a {
        margin: 30px 0;
    }
}