.header-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-area.scrolled {
    background: rgb(0, 0, 0);
}

.header-wrapper {
    position: relative;
}

.content-zone {
    max-width: 1150px;
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

@media (max-width: 1200px) {
    .content-zone {
        padding: 15px 15px;
    }
}

@media (max-width: 768px) {
    .content-zone {
        padding: 15px 15px;
    }
}

.element-item[data-justify="start"] {
    display: flex;
    align-items: center;
}

.element-item[data-justify="start"] .element-content {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.component-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.icon-wrap {
    display: block;
    width: 100%;
    height: 100%;
}

.vector-icon {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.element-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.element-text--contact a {
    color: #fff;
    text-decoration: underline;
    font-family: "Open Sans", Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.element-text--contact a:hover {
    opacity: 0.8;
}

.element-text--desc p {
    color: #fff;
    font-family: "Open Sans", Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0px;
    text-align: center;
    margin: 0;
    opacity: 0.9;
}

.element-item[data-justify="center"] {
    flex: 1;
    display: flex;
    justify-content: center;
}

.component-menu {
    display: flex;
    justify-content: center;
    width: 100%;
}

.component-menu-list {
    display: flex;
    list-style: none;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    margin: -6px -12px;
    padding: 0;
}

.menu-item {
    pointer-events: none;
}

.menu-item-text {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
    margin: 0 12px;
    color: #fff;
    font-family: "Open Sans", Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.37;
    letter-spacing: 0px;
    font-style: normal;
    text-decoration: none;
    white-space: nowrap;
    opacity: 1;
    cursor: pointer;
    pointer-events: all;
    user-select: none;
    transition: opacity 0.3s ease;
}

.menu-item-text:hover {
    opacity: 1;
}

.menu-item-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    opacity: 0.35;
    transition: width 0.3s ease;
}

.menu-item-text:hover::after {
    width: 100%;
}

.element-item[data-justify="end"] {
    display: flex;
    align-items: center;
}

.component-button {
    position: relative;
    background: none;
    border: none;
    color: #fff;
    font: inherit;
    outline: inherit;
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 5px;
    min-width: 15px;
    user-select: none;
    text-align: center;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    max-width: 100%;
    word-break: normal;
    hyphens: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.bg-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #38a817;
    border-radius: 5px;
    z-index: 0;
}

.bg-fill-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #59ad40;
    border-radius: 5px;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.2s ease;
}

.component-button:hover .bg-fill-hover {
    opacity: 1;
}

.btn-text {
    position: relative;
    z-index: 2;
    font-family: "Open Sans", Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.37;
    letter-spacing: 0px;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    color: #fff;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    transition: 0.2s ease;
    transition-property: color, opacity;
}


.menu-item-text.active span {
    color: #38a817;
    font-weight: 600;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #060607;
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo img {
    height: 45px;
    width: auto;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav {
    flex: 1;
    padding: 30px 30px;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-list li {
    margin-bottom: 25px;
}

.mobile-menu-list a {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.mobile-menu-list a.active {
    color: #38a817;
    font-weight: 600;
}

.mobile-menu-list a:hover {
    color: #38a817;
}

.mobile-menu-footer {
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
}

.mobile-phone svg {
    color: #38a817;
}

.mobile-address {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px 0;
}

.mobile-callback-btn {
    width: 100%;
    padding: 15px;
    background: #38a817;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-callback-btn:hover {
    background: #59ad40;
}

.mobile-logo {
    display: none;
}

.mobile-logo img {
    height: 50px;
    width: auto;
}

.mobile-contact {
    display: none;
}

.mobile-hidden {
    display: flex;
}

@media (max-width: 992px) {
    .mobile-hidden {
        display: none !important;
    }
    
    .content-zone {
        width: 100%;
        max-width: none;
        padding: 15px;
        justify-content: space-between;
    }
    
    .mobile-contact {
        display: flex !important;
        justify-content: flex-start;
    }
    
    .mobile-logo {
        display: block;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .desktop-button {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .header-area {
        padding: 0;
        height: 70px;
    }
    
    .header-wrapper {
        width: 100%;
    }
    
    .element-item[data-justify="start"] {
        flex: 0 0 auto;
        order: 1;
    }
    
    .element-item[data-justify="center"] {
        display: none !important;
    }
    
    .element-item[data-justify="end"] {
        flex: 0 0 auto;
        order: 2;
    }
    
    .element-item[data-justify="end"] .element-content {
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        max-width: 100%;
    }
    
    .header-area {
        height: 60px;
    }
    
    .content-zone {
        padding: 10px 15px;
    }
    
    .mobile-logo img {
        height: 40px;
    }
    
    .mobile-menu-logo img {
        height: 40px;
    }
    
    .burger-menu {
        width: 28px;
        height: 28px;
    }
}
