/**
 * Mobile Menu Styles
 * Mobile navigation and toggle button
 */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
    flex: none;
    order: 4;
    flex-grow: 0;
    margin: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* ================================
   Footer Styles
   ================================ */

.footer-section {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 100px;
    overflow-x: hidden;
}

@media (max-width: 1440px) {
    .footer-section {
        margin-top: 90px;
    }
}

@media (max-width: 1366px) {
    .footer-section {
        margin-top: 80px;
    }
}

.site-footer {
    background: var(--color-green-dark);
    border-radius: 25px 25px 0 0;
    padding: 50px 100px 100px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 133px;
}

@media (max-width: 1440px) {
    .site-footer {
        padding: 45px 80px 90px;
        gap: 100px;
        flex-direction: row;
    }
}

@media (max-width: 1366px) {
    .site-footer {
        padding: 42px 70px 80px;
        gap: 90px;
        flex-direction: row;
    }

    .footer-phone {
        font-size: 22px;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-link,
    .footer-email,
    .footer-copyright-text,
    .footer-copyright-desc {
        font-size: 15px;
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-about {
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-products,
.footer-clients,
.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 0;
}

.footer-logo img {
    display: block;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.footer-copyright-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: var(--color-white);
    margin: 0;
}

.footer-copyright-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
    color: var(--color-white);
    margin: 0;
}

.footer-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    color: var(--color-white);
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #E1E1E1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--color-green);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.footer-phone {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: var(--color-green);
    text-decoration: none;
    transition: opacity 0.3s;
    display: block;
}

.footer-phone:hover {
    opacity: 0.8;
}

.footer-email {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    display: block;
    font-size: 16px;
    line-height: 120%;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-email:hover {
    color: var(--color-green);
}

