/* Navbar Component Styles - Dark Burgundy DronAgro Theme */
.header-sticky {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    z-index: 1000;
    border-bottom: 1px solid #331525;
    transition: all 0.3s ease;
    box-sizing: border-box;
    padding: 4px 0;
}

.header-sticky.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.nav-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    height: 48px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 1;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #f8fafc;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #dc2626;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-nav-wsp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background-color: #15803d;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(21, 128, 61, 0.3);
    white-space: nowrap;
}

.btn-nav-wsp:hover {
    background-color: #166534;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(21, 128, 61, 0.4);
}

.btn-nav-wsp svg {
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #f8fafc;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Breakpoint */
@media (max-width: 1150px) {
    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        background-color: #1c0d15;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 32px;
        gap: 20px;
        border-bottom: 1px solid #331525;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
        display: none;
        z-index: 999;
    }

    .nav-menu.is-active {
        display: flex;
    }

    .nav-cta-group {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}