/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: min(max(0.9375rem, 1.042vw), 1.25rem) 0;
    background: transparent;
}

.navbar_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header_logo {
    width: 100%;
    max-width: min(max(7.5rem, 11.458vw), 13.75rem);
}

.header_logo img {
    width: 100%;
    display: block;
}

/* Center Menu */
.nav__row {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.bottom__row {
    display: flex;
    align-items: center;
    gap: min(max(3.4375rem, 5.208vw), 6.25rem);
}

.menu {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: min(max(1.5625rem, 2.083vw), 2.5rem);
}

.menu li {
    margin: 0;
}

.menu li a {
    color: var(--theme-white);
    font-size: min(max(1rem, 0.938vw), 1.125rem);
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.arrow {
    display: flex;
    transition: 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #12051f;
    padding: 10px 0;
    margin-top: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    background: rgba(255,255,255,0.08);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* Contact Button */
.nav_menu_btn {
    display: flex;
    align-items: center;
}