/* Modern Sleek Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #9b0013, #e74c3c, #9b0013);
    z-index: 3;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.3rem 0;
}

.navbar .container {
    position: relative;
    z-index: 2;
}

.navbar-brand {
    position: relative;
    z-index: 2;
    padding: 0.25rem 0;
}

.navbar-brand img {
    max-width: 100%;
    width: 110px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(155, 0, 19, 0.3));
}

.navbar-toggler {
    border: 1px solid #9b0013;
    border-radius: 6px;
    background: #9b0013;
    padding: 0.4rem 0.6rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: #c41e3a;
    transform: translateY(-1px);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 20px;
    height: 20px;
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: #2c3e50 !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 6px;
    margin: 0 0.25rem;
    font-size: 0.9rem;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #9b0013;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #9b0013 !important;
    background: rgba(155, 0, 19, 0.05);
}

.nav-link:hover::before {
    width: 80%;
}

/* Sleek Contact Button */
.navbar .btn-secondary {
    background: linear-gradient(135deg, #9b0013, #c41e3a);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar .btn-secondary:hover {
    background: linear-gradient(135deg, #c41e3a, #e74c3c);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(155, 0, 19, 0.3);
    color: white;
}

/* Mobile Menu */
.navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 8px;
    margin-top: 0.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(155, 0, 19, 0.1);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem;
    }
    
    .nav-link {
        margin: 0.25rem 0;
        text-align: center;
        padding: 0.75rem 1rem !important;
    }
    
    .navbar .btn-secondary {
        margin-top: 1rem;
        width: 100%;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 0.4rem 0;
    }
    
    .navbar-brand img {
        width: 90px;
    }
    
    .navbar .btn-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        width: 80px;
    }
    
    .navbar {
        padding: 0.3rem 0;
    }
}