/* ===== OPTION 2: Minimal Line ===== */
/* Ultra minimal with bottom accent line, very clean */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #0f172a;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
    z-index: 1000;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0ea5e9 50%, transparent);
    opacity: 0.5;
}

.navbar-container {
    max-width: 1200px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-logo {
    width: auto;
    height: 48px;
    object-fit: contain;
}

.navbar-brand-text {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #f1f5f9, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    padding: 20px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: #0ea5e9;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.nav-link:hover {
    color: #f1f5f9;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #0ea5e9;
}

.nav-link.active::after {
    transform: scaleX(1);
}

.navbar-cta {
    margin-left: 24px;
}

.navbar-cta .btn {
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #0ea5e9;
    border-radius: 6px;
    background: transparent;
    color: #0ea5e9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-cta .btn:hover {
    background: #0ea5e9;
    color: white;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar-toggle span {
    width: 22px;
    height: 2px;
    background: #94a3b8;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar {
        height: 64px;
    }

    .navbar-toggle {
        display: flex;
        padding: 10px;
    }

    .navbar-toggle span {
        width: 26px;
        height: 2.5px;
        background: #e2e8f0;
        border-radius: 2px;
    }

    .navbar-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(14, 165, 233, 0.2);
        padding: 32px 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .navbar-menu.open {
        transform: translateX(0);
    }

    .navbar-nav {
        flex-direction: column;
        gap: 8px;
    }

    .nav-link {
        padding: 18px 16px;
        font-size: 17px;
        font-weight: 500;
        color: #e2e8f0;
        border-bottom: none;
        border-radius: 12px;
        transition: all 0.2s ease;
        text-align: center;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(14, 165, 233, 0.1);
        color: #0ea5e9;
    }

    .nav-link::after {
        display: none;
    }

    .navbar-cta {
        margin: 32px 0 0;
    }

    .navbar-cta .btn {
        width: 100%;
        text-align: center;
        padding: 18px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        background: linear-gradient(135deg, #0ea5e9, #06b6d4);
        border: none;
        color: white;
        box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
    }

    .navbar-cta .btn:hover {
        box-shadow: 0 6px 30px rgba(14, 165, 233, 0.5);
    }
}