/* ===== PM Menu - Desktop Horizontal Menu ===== */

.pm-menu {
    background: #5BA4CF;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 100;
}

.pm-menu__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.pm-menu__cats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.pm-menu__item {
    position: relative;
}

.pm-menu__link {
    display: block;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.pm-menu__link:hover,
.pm-menu__link:focus {
    background: #4a93be;
    color: #fff;
    text-decoration: none;
}

/* Dropdown */
.pm-menu__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 200;
    padding: 8px 0;
}

.pm-menu__item:hover .pm-menu__dropdown {
    display: block;
}

.pm-menu__dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pm-menu__dropdown li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.pm-menu__dropdown li a:hover {
    background: #f0f7fc;
    color: #5BA4CF;
    text-decoration: none;
}

/* Custom links (right side) */
.pm-menu__custom {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.pm-menu__custom-link {
    display: block;
    padding: 12px 14px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.pm-menu__custom-link:hover,
.pm-menu__custom-link:focus {
    background: #4a93be;
    color: #fff;
    text-decoration: none;
}

.pm-menu__custom-link i {
    margin-right: 4px;
}

/* ===== Mobile sidebar highlight links ===== */
.pm-sidebar__highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #5BA4CF 0%, #4a93be 100%);
    margin: 4px 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.pm-sidebar__highlight:hover,
.pm-sidebar__highlight:focus {
    background: linear-gradient(135deg, #4a93be 0%, #3d82ad 100%);
    color: #fff;
    text-decoration: none;
}

.pm-sidebar__highlight i {
    font-size: 16px;
}

/* ===== Hide desktop menu on mobile ===== */
@media (max-width: 768px) {
    .pm-menu {
        display: none !important;
    }
}

/* ===== Hide mobile highlights on desktop ===== */
@media (min-width: 769px) {
    .pm-sidebar__highlight {
        display: none;
    }
    .pm-sidebar__menu-items .pm-sidebar__section-title {
        display: none;
    }
    .pm-sidebar__menu-items .pm-sidebar__item,
    .pm-sidebar__menu-items .pm-sidebar__subitems {
        display: none;
    }
}

/* ===== Hide FINALmenu desktop when pmmenu is active ===== */
#FINALmenu,
#FINALmenu-desktop-nav,
.FINALmenu-tab-content,
.mobile_menu_wrapper {
    display: none !important;
}
