.wrapper-fix {
    width: 100%;
    padding: 1rem 0;
    position: relative;
    z-index: 10 !important;
}

.navbarv3 {
    background-color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    border-radius: 32px;
    max-width: 1142px;
    margin: auto;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    max-height: 40px;
    width: auto;
}

.nav-linksv3 {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    margin: auto;
}

.nav-linksv3 a {
    text-decoration: none;
    color: #1A202C;
    font-weight: 500;
    transition: color 0.3s;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn_hero {
    padding: 3px 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.btn_hero-outline {
    background: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn_hero-primary {
    border: none;
}

.btn_hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1A202C;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    padding: 1rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    z-index: 98;
}

.mobile-menu .nav-linksv3 {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mobile-menu .auth-buttons {
    flex-direction: column;
    width: 100%;
}

.mobile-menu .auth-buttons .btn_hero {
    width: 100%;
    justify-content: center;
}

/* Active states for hamburger */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .navbarv3 {
        position: relative;
        margin: 0 15px;
    }
    
    .nav-container .nav-linksv3,
    .nav-container .auth-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-menu.active {
        display: flex;
    }
}