/* =====================================
   HOSPITAL STYLE MOBILE MENU
===================================== */

/* OVERLAY */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* SLIDING MENU PANEL */
.hospital-menu {
    position: fixed;
    top: 0;
    right: -380px;
    width: 360px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -8px 0 25px rgba(0,0,0,0.12);
    transition: right 0.35s ease;
    z-index: 999;
    overflow-y: auto;
    font-family: 'Nunito Sans', sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hospital-menu.active {
    right: 0;
}

/* RESET INSIDE MENU */
.hospital-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* HEADER */
.menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.menu-header img {
    width: 20px;
    cursor: pointer;
}

/* MAIN MENU ITEMS */
.menu-item a {
    display: block;
    padding: 16px 22px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    color: #222;
    border-bottom: 1px solid #f2f2f2;
    transition: 0.2s ease;
}

.menu-item a:hover {
    background: #f7f9fc;
    color: #0056b3;
}

/* SECTION HEADINGS */
.menu-heading {
    padding: 20px 22px 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    background: #f9fafc;
}

/* SUB LINKS */
.menu-sub a {
    display: block;
    padding: 12px 32px;
    font-size: 15px;
    text-decoration: none;
    color: #444;
    border-bottom: 1px solid #f2f2f2;
    transition: 0.2s ease;
}

.menu-sub a:hover {
    background: #f5f7fb;
    color: #b30059;
}

/* CTA BUTTON */
.menu-cta {
    padding: 20px;
}

.menu-cta a {
    display: block;
    text-align: center;
    background: #b30059;
    color: #fff;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.menu-cta a:hover {
    background: #900046;
}