.mobile-menu {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    padding: 80px 20px 20px;
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu__nav a {
    font-size: 18px;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu__contacts {
    margin-top: 40px;
}

.mobile-menu__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 15px;
}

.mobile-menu__social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.mobile-menu__address {
    margin-top: 20px;
    color: var(--text-color-light);
    font-size: 14px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .header__menu,
    .header__social,
    .header__contact {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header__content {
        justify-content: space-between;
    }
    
    .header__logo img {
        width: 150px;
    }
}

.mobile-header {
    display: none;
    width: 100%;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.mobile-header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.mobile-header__menu-btn {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-header__menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

.mobile-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

.mobile-header__logo img {
    height: 30px;
    margin-right: 8px;
}

.mobile-header__logo-text {
    font-size: 16px;
    color: var(--primary-color);
}

.mobile-header__phone {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.mobile-header__phone img {
    width: 20px;
    height: 20px;
}

.mobile-header__social {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

.mobile-header__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 35px;
    text-decoration: none;
    background-color: #f5f5f5;
    border-radius: 5px;
    transition: 0.3s;
}

.mobile-header__social-link:hover {
    background-color: #e5e5e5;
}

.mobile-header__social-link img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.mobile-header__social-text {
    font-size: 14px;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .header {
        display: none;
    }
    
    .mobile-header {
        display: block;
    }
    
    body {
        padding-top: 95px;
    }
} 