.navbar {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    font-size: 14px;
}

.nav-wrapper {
    max-width: 1300px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT */
.nav-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.doctor-info {
    line-height: 1.2;
}

.doctor-info strong {
    font-size: 14px;
    color: #000;
}

.doctor-info span {
    font-size: 11px;
    color: #777;
}

.hospital-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.nhscope-logo {
    width: 95px;
}

/* MENU */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    font-weight: 500;
    color: #000;
}

/* CONTACT BUTTON */
.contact-btn {
    border: 1px solid #000;
    padding: 6px 14px;
    font-size: 13px;
}

/* DROPDOWN */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    min-width: 220px;
    display: none;
    flex-direction: column;
    z-index: 999;
}

.dropdown li {
    border-bottom: 1px solid #eee;
}

.dropdown li a {
    padding: 12px 15px;
    display: block;
    font-size: 13px;
}

.has-dropdown:hover .dropdown {
    display: block;
}

/* LANGUAGE SWITCHER */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin-left: 10px;
}

.lang-switch a {
    color: #000;
    opacity: 0.6;
    font-weight: 500;
}

.lang-switch a.active {
    opacity: 1;
    font-weight: 600;
    text-decoration: underline;
}

.lang-switch span {
    opacity: 0.4;
}


/* MOBILE */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 100%;
        display: none;
        border-top: 1px solid #eee;
    }

    .nav-menu.active {
        display: flex;
    }

    .has-dropdown:hover .dropdown {
        display: none;
    }

    .dropdown {
        position: static;
        border: none;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }
}
