.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: #07141c;
    color: #ddd;
    z-index: 999;
    font-family: "DM Sans", Arial, sans-serif;
    border-bottom: 1px #fff solid;
}

.site-header .container-fluid {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.header-top {
    height: 52px;
    display: flex;
    align-items: center;
}

.header-top .container-fluid {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-top-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-trust {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 600;
    color: #dce3e7;
    white-space: nowrap;
}

.header-trust i {
    font-size: 17px;
    color: #fff;
}

.header-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 25px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 145px;
}

.header-phone > i {
    width: 27px;
    height: 27px;
    border: 2px solid #437187;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #80b6c9;
    font-size: 12px;
}

.header-phone small {
    display: block;
    color: #bfc9ce;
    font-size: 10px;
    line-height: 13px;
}

.header-phone strong {
    display: block;
    color: #e4ebee;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.3px;
}

.header-main {
    height: 74px;
    background: #08151d;
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-logo {
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo a {
    text-decoration: none;
}

.logo-placeholder {
    width: 245px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #6daec6;
    font-size: 22px;
    font-weight: 800;
    line-height: 20px;
    letter-spacing: 2px;
}

.logo-placeholder img {
    width: 100%;
    height: auto;
    margin-top: -50px;
}

.main-navigation {
    height: 100%;
    display: flex;
    align-items: center;
}

.main-navigation > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-navigation li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-navigation > ul > li > a {
    height: 100%;
    padding: 0 22px;
    display: flex;
    align-items: center;
    position: relative;
    color: #eee;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-navigation > ul > li > a:hover,
.main-navigation > ul > li.active > a {
    color: #fff;
}

.main-navigation > ul > li.current_page_item > a:after,
.main-navigation > ul > li:hover > a:after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 10px;
    height: 2px;
    background: #fff;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .header-top-right {
        gap: 0;
		display:none;
    }

    .header-trust span {
        display: none;
    }

    .header-divider {
        margin: 0 16px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-nav-close {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 420px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 32px 24px;
        transition: right 0.45s cubic-bezier(0.65, 0, 0.35, 1);
        z-index: 999;
        overflow-y: auto;
    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation > ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        height: auto;
    }

    .main-navigation li {
        height: auto;
        width: 100%;
    }

    .main-navigation > ul > li > a {
        height: auto;
        padding: 14px 0;
        width: 100%;
        color: #ffffff;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        font-size: 18px;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        border-bottom: 2px solid #e4ebee;
    }

    .main-navigation.active > ul > li > a {
        opacity: 1;
        transform: translateX(0);
    }

    .main-navigation.active > ul > li:nth-child(1) > a { transition-delay: 0.1s; }
    .main-navigation.active > ul > li:nth-child(2) > a { transition-delay: 0.15s; }
    .main-navigation.active > ul > li:nth-child(3) > a { transition-delay: 0.2s; }
    .main-navigation.active > ul > li:nth-child(4) > a { transition-delay: 0.25s; }
    .main-navigation.active > ul > li:nth-child(5) > a { transition-delay: 0.3s; }
    .main-navigation.active > ul > li:nth-child(6) > a { transition-delay: 0.35s; }
    .main-navigation.active > ul > li:nth-child(7) > a { transition-delay: 0.4s; }

    .main-navigation > ul > li.current_page_item > a:after,
    .main-navigation > ul > li:hover > a:after {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .header-top {
        height: 44px;
    }

    .header-phone strong {
        font-size: 11px;
    }

    .logo-placeholder {
        width: 180px;
        height: 60px;
    }

    .logo-placeholder img {
        margin-top: -35px;
    }

    .main-navigation {
        max-width: 100%;
    }
}