/* Modern Navbar with Curved Borders */
.navbar-modern {
    background: white !important;
    border-radius: 0 0 25px 25px;
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.navbar-modern .navbar-nav .nav-link {
    color: #2c3e50 !important;
    font-weight: 500;
    padding: 0.5rem 1.25rem !important;
    border-radius: 20px;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
}

.navbar-modern .navbar-nav .nav-link:hover,
.navbar-modern .navbar-nav .nav-link.active {
    background: #2ab737;
    color: white !important;
    text-decoration: none !important;
}

.navbar-modern .navbar-brand {
    text-decoration: none !important;
}

.navbar-toggler {
    border: none;
    border-radius: 10px;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(42, 183, 55, 0.25);
}

.navbar-location {
    display: flex;
    align-items: center;
    color: #2c3e50 !important;
    font-weight: 500;
    margin-right: 1.5rem;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.navbar-location:hover {
    color: #2ab737 !important;
    text-decoration: none !important;
}

.navbar-location i {
    color: #2ab737;
    margin-right: 0.5rem;
}

@media (max-width: 991px) {
    .navbar-location {
        margin-right: 0;
        margin-bottom: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .navbar-modern .navbar-nav {
        padding-top: 1rem;
    }
    
    .navbar-modern .navbar-nav .nav-link {
        margin: 0.25rem 0;
        border-radius: 15px;
    }
}
