* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #121211;
    --primary-gold: #f9b700;
    --glass-bg: rgba(18, 18, 17, 0.25);
    --glass-border: rgba(249, 183, 0, 0.18);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-dark);
    color: #ffffff;
    overflow-x: hidden;
}

/* NAVBAR STYLES */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 18, 17, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(249, 183, 0, 0.2);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(249, 183, 0, 0.5));
}

.logo-text {
    letter-spacing: 1px;
}

.highlight {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(249, 183, 0, 0.6);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.menu-item {
    position: relative;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.8rem 1.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: var(--glass-bg);
    /* backdrop-filter: blur(10px); */
    /* -webkit-backdrop-filter: blur(10px); */
    border: 1px solid transparent;
    opacity: 0;
    transition: all 0.3s ease;
}

.menu-link:hover::before,
.menu-link.active::before {
    opacity: 1;
    border-color: var(--glass-border);
}

.menu-link span,
.menu-link:hover,
.menu-link.active {
    position: relative;
    z-index: 1;
}

.menu-link:hover,
.menu-link.active {
    color: var(--primary-gold);
}

.arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.has-submenu:hover > .menu-link .arrow {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    list-style: none;
    background: rgba(18, 18, 17, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 183, 0, 0.2);
    border-radius: 15px;
    padding: 0.8rem;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-item {
    position: relative;
}

.submenu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.submenu-link:hover {
    background: rgba(249, 183, 0, 0.1);
    color: var(--primary-gold);
    padding-left: 1.3rem;
}

.has-nested:hover > .submenu-link .arrow {
    transform: rotate(-90deg);
}

.nested-menu {
    position: absolute;
    top: 0;
    right: calc(100% + 0.5rem);
    min-width: 320px;
    max-height: 500px;
    overflow-y: auto;
    list-style: none;
    background: rgba(18, 18, 17, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 183, 0, 0.2);
    border-radius: 15px;
    padding: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 101;
}

.has-nested:hover > .nested-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nested-menu::-webkit-scrollbar {
    width: 6px;
}

.nested-menu::-webkit-scrollbar-track {
    background: rgba(249, 183, 0, 0.1);
    border-radius: 10px;
}

.nested-menu::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

.nested-link {
    display: block;
    padding: 0.7rem 1rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nested-link:hover {
    background: rgba(249, 183, 0, 0.1);
    color: var(--primary-gold);
    padding-left: 1.3rem;
}

/* ===================================
   ULTRA MINIMAL FOOTER WITH LOGO GLOW
   =================================== */

.ultra-footer {
    background: rgba(18, 18, 17, 0.98);
    border-top: 1px solid rgba(249, 183, 0, 0.2);
    padding: 2rem 0;
    position: relative;
}

.ultra-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0.6;
}

.ultra-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.ultra-footer-logo {
    height: 32px;
    width: auto;
    opacity: 0.95;
    filter: drop-shadow(0 0 8px rgba(249, 183, 0, 0.4)) 
            drop-shadow(0 0 15px rgba(249, 183, 0, 0.3))
            drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.ultra-footer-logo:hover {
    filter: drop-shadow(0 0 12px rgba(249, 183, 0, 0.6)) 
            drop-shadow(0 0 20px rgba(249, 183, 0, 0.4))
            drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
    opacity: 1;
}

.ultra-footer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.ultra-footer-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ultra-footer-info a:hover {
    color: var(--primary-gold);
}

.ultra-footer-info span {
    color: rgba(249, 183, 0, 0.3);
}

.ultra-footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(18, 18, 17, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid rgba(249, 183, 0, 0.2);
    }

    .menu.active {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 1rem 0;
    }

    .menu-item {
        width: 100%;
    }

    .menu-link {
        width: 100%;
        justify-content: space-between;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 0.8rem;
    }

    .has-submenu.active > .submenu {
        max-height: 1000px;
        padding: 0.8rem;
    }

    .nested-menu {
        position: static;
        right: auto;
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 0.8rem;
    }

    .has-nested.active > .nested-menu {
        max-height: 1000px;
        padding: 0.8rem;
    }

    .ultra-footer {
        padding: 2rem 0 1.5rem;
    }
    
    .ultra-footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .ultra-footer-logo {
        height: 30px;
    }
    
    .ultra-footer-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .ultra-footer-info span {
        display: none;
    }
}

@media (max-width: 480px) {
    .ultra-footer {
        padding: 1.5rem 0;
    }
    
    .ultra-footer-logo {
        height: 28px;
    }
    
    .ultra-footer-info a {
        font-size: 0.85rem;
    }
    
    .ultra-footer-copyright {
        font-size: 0.8rem;
    }
}