/* ========== NAVBAR ========== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 48px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(6, 9, 30, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
    height: 66px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: var(--navy);
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
    letter-spacing: -1px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-size: 9px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
}

.nav-links>li>a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    position: relative;
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-links>li>a:hover {
    color: var(--white);
}

.nav-links>li>a:hover::after {
    left: 14px;
    right: 14px;
}

.nav-links>li>a .arr {
    font-size: 9px;
    opacity: 0.6;
    transition: transform 0.2s;
}

.nav-links>li:hover>a .arr {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(8, 12, 38, 0.98);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 16px;
    padding: 16px;
    min-width: 240px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 168, 76, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 999;
}

.nav-links>li {
    position: relative;
}

.nav-links>li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 14px !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.72) !important;
    border-radius: 10px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: all 0.2s !important;
    text-decoration: none;
}

.dropdown a::after {
    display: none !important;
}

.dropdown a .d-icon {
    width: 28px;
    height: 28px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.dropdown a:hover {
    color: var(--white) !important;
    background: rgba(201, 168, 76, 0.1) !important;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 8px 0;
}

/* Nav CTA */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy);
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
    font-family: 'Space Grotesk', sans-serif;
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.5);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.btn-nav-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(201, 168, 76, 0.4);
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-nav-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 9, 30, 0.98);
    backdrop-filter: blur(20px);
    z-index: 998;
    padding: 24px;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    overflow-y: auto;
}

.mobile-drawer.open {
    display: flex;
}

.mobile-drawer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s;
}

.mobile-drawer a:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.2);
}

/* ========== LANGUAGE SWITCHER ========== */
.nav-lang-switcher {
    position: relative;
}

.nav-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 30px;
    border: 1.5px solid rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.06);
    color: var(--white);
    cursor: pointer;
    font-size: 12.5px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.nav-lang-btn:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.12);
    transform: translateY(-1px);
}

.nav-lang-flag {
    font-size: 15px;
    line-height: 1;
}

.nav-lang-current {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold);
}

.nav-lang-arrow {
    font-size: 9px;
    opacity: 0.6;
    transition: transform 0.25s ease;
}

.nav-lang-switcher.open .nav-lang-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.nav-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: rgba(8, 12, 38, 0.98);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 168, 76, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.25s ease;
    z-index: 1001;
}

.nav-lang-switcher.open .nav-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Upward variant for footer */
.nav-lang-dropdown-up {
    top: auto;
    bottom: calc(100% + 8px);
    transform: translateY(6px);
}

.nav-lang-switcher.open .nav-lang-dropdown-up {
    transform: translateY(0);
}

/* Options */
.nav-lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-lang-option:hover {
    color: var(--white);
    background: rgba(201, 168, 76, 0.1);
}

.nav-lang-option.active {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    font-weight: 700;
}

.nav-lang-option.active::after {
    content: '✓';
    margin-left: auto;
    font-size: 12px;
    color: var(--gold);
}

.nav-lang-opt-flag {
    font-size: 16px;
    line-height: 1;
}

/* Footer variant — same styles, just reuse classes */
.footer-lang-switcher .nav-lang-btn {
    padding: 6px 12px;
    font-size: 12px;
}