/* Shared Desktop Navigation (component) */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    background: #fff;
    box-shadow: 0 4px 4px rgba(0,0,0,0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

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

.logo a {
    text-decoration: none;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.desktop-nav a,
.desktop-nav button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #333;
    text-decoration: none;
    font-family: inherit;
    font-weight: 400;
    position: relative;
}

.desktop-nav a:hover,
.desktop-nav button:hover {
    color: #4eacea;
}

.desktop-nav .active {
    color: #4eacea;
    font-weight: 500;
}

.desktop-nav .active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #4eacea;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #333;
}

.nav-btn:hover {
    color: #4eacea;
}

.contact-btn {
    background: #4eacea;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-btn:hover {
    background: #4487e1;
    color: #fff;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 200px;
    z-index: 1000;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }
}
