/* Header */
.header-content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background-color: transparent;
    max-width: 1440px;
        margin: 0 auto;
        padding: 0 1rem;
}

.header-content.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
}
.container-header {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .header-content {
        padding: 0 2rem;
    }
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;

}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideInLeft 0.8s ease;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(to right, #ffffff, #d1d5db);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000000;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    
}

.logo-text span {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.125rem;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-desktop, .menu {
        display: flex;
        flex-direction: row !important;
    }
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #d1d5db;
    transform: scale(1.05);
}

.header-cta {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .header-cta {
        display: flex;
    }
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}
.phone-info a {
    text-decoration: none;
    color: #ffffff;
}
.phone-info span {
    text-decoration: none;
    color: #ffffff;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 3.7rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}


@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none !important;
    }
}

.hamburger {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}


.mobile-menu {
    display: none;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid #374151;
    padding: 1rem 0;
    /* Добавьте эти правила для анимации */
    transition: transform 0.5s ease-in-out;
    transform: translateY(-100%);
    /* animation: slideDown 0.3s ease; */
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(7px, 6px);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


.mobile-nav, .menu {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 1rem;
    align-items: center;
}
.mobile-nav li::marker {
    display: none;
}


.mobile-nav-link {
    color: #ffffff !important;
    list-style-type: none !important;
    text-decoration: none !important;
    padding: 0.7rem 0 !important;
    transition: color 0.2s ease !important;
    font-size: 1.25rem !important;
}

.mobile-contact {
    display: flex;
    padding: 1.3rem;
    border-top: 1px solid #374151;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0 1.5em 3em;

    align-items: center;
}

/* -------------- */
