/* Mobile Menu Fixes */
.nav-mb-link-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-mb-link-wrap a.sub-nav-link {
    flex: 1;
    padding-right: 15px;
}

.mb-submenu-toggle {
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 4px;
    color: #ae231e;
    transition: all 0.3s ease;
}

.mb-submenu-toggle:not(.collapsed) {
    background: #ae231e;
    color: #fff;
}

.mb-submenu-toggle .icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mb-submenu-toggle:not(.collapsed) .icon {
    transform: rotate(180deg);
}

.nav-mb-group {
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

/* Ensure sub-submenu links have padding */
.sub-menu-level-2 {
    padding-left: 20px !important;
    background: #fff;
    margin-top: 5px;
}

/* Mobile Header Call Button */
.mobile-call-btn {
    width: 32px;
    height: 32px;
    background: #ae231e;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(174, 35, 30, 0.3);
    animation: phone-pulse 2s infinite;
    transition: all 0.3s ease;
}

.mobile-call-btn:hover {
    transform: scale(1.1);
    background: #c32722;
}

@keyframes phone-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(174, 35, 30, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(174, 35, 30, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(174, 35, 30, 0);
    }
}
