.nav-item {
    position: relative;
    height: 72px;
    display: flex;
    align-items: center;
}

.menu .menu-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: .3s;
}

.menu .menu-link:hover,
.nav-item:hover .menu-link {
    color: #e30613;
}

.services-dropdown {
    position: fixed;
    top: 71px;
    left: 50%;
    width: min(960px, calc(100vw - 42px));
    padding: 24px 28px 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    background: rgba(0,0,0,.96);
    border: 1px solid rgba(255,255,255,.75);
    box-shadow: 0 24px 70px rgba(0,0,0,.42);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%);
    transition: opacity .18s ease;
    z-index: 1000;
}

.nav-item:hover .services-dropdown,
.nav-item:focus-within .services-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
}

.dropdown-column h3 {
    color: #fff;
    font-size: 19px;
    line-height: 1.15;
    margin-bottom: 16px;
    font-weight: 900;
}

.dropdown-column a {
    position: relative;
    display: block;
    padding: 6px 0 6px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 600;
}

.dropdown-column a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 1px;
    color: #e30613;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.dropdown-column a:hover {
    color: #e30613;
}

.country-dropdown {
    position: absolute;
    top: 71px;
    right: 0;
    width: 220px;
    padding: 12px;
    display: grid;
    gap: 8px;
    background: rgba(0,0,0,.96);
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 10px;
    box-shadow: 0 18px 45px rgba(0,0,0,.36);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: .18s ease;
    z-index: 1000;
}

.nav-item:hover .country-dropdown,
.nav-item:focus-within .country-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.country-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.country-dropdown a:hover {
    background: rgba(227,6,19,.18);
    color: #fff;
}

.country-dropdown img {
    width: 30px;
    height: 22px;
    border-radius: 4px;
    object-fit: cover;
    background: #fff;
}

@media (max-width: 1100px) {
    .services-dropdown,
    .country-dropdown {
        display: none;
    }
}
