.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar .logo img {
    width: 150px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .navbar .mobile-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-menu {
        width: 30px;
        height: 30px;
        cursor: pointer;
        position: relative;
        z-index: 1001;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .mobile-menu span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #333;
        margin: 6px 0;
        transition: all 0.3s ease;
    }
    
    /* Menu animation styles */
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Fixed navigation menu styles */
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        right: -250px;
        width: 250px;
        height: auto;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        right: 0;
    }

    .nav-links a {
        padding: 12px 25px;
        width: 100%;
        text-align: right;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: #333;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }
}

.nav-links .contact-btn {
    background-color: #ff4d4d;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links .contact-btn:hover {
    background-color: #ff3333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .nav-links .contact-btn {
        background-color: #ff4d4d;
        color: white !important;
        margin: 10px 25px;
        text-align: center;
        border-radius: 25px;
        width: calc(100% - 50px);
    }

    .nav-links .contact-btn:hover {
        transform: translateY(0);
        background-color: #ff3333;
    }
}