/* NAVBAR STYLES - FIXED */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 30px rgba(57, 255, 20, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0a0a0a, #2e342d);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #000;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #39FF14;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

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

.nav-link {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #39FF14;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #39FF14, #2ACC10);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px #39FF14;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #39FF14;
}

.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    display: inline-block;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.btn-secondary:hover {
    background: rgba(57, 255, 20, 0.1);
    border-color: #39FF14;
    color: #39FF14;
}

.btn-primary {
    background: linear-gradient(90deg, #39FF14, #2ACC10);
    color: #000;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(57, 255, 20, 0.5);
}

/* MOBILE MENU TOGGLE BUTTON */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #39FF14;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

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

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

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

/* MOBILE MENU - FULLSCREEN OVERLAY */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(25px);
    z-index: 1001;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
    display: block;
}

.mobile-nav-link:hover {
    background: rgba(57, 255, 20, 0.1);
    color: #39FF14;
    transform: translateX(5px);
}

.mobile-nav-link.active {
    background: rgba(57, 255, 20, 0.2);
    color: #39FF14;
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.mobile-cta .btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .nav-menu,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .mobile-menu {
        padding: 5rem 1.5rem 2rem;
    }

    .mobile-nav-link {
        font-size: 1.1rem;
        padding: 0.9rem;
    }
}